复选框更改总计

时间:2012-07-24 18:14:35

标签: javascript jquery joomla2.5

我需要一些代码的帮助。

我有一个有三种不同计划可供选择的表格。然后在第二页上,您可以选中一个框以添加配偶,并且总计需要更改。我不知道如何编码。

第一页

此页面显示了供客户选择的三种计划选项。

计划一(标准)是99美元设置费&每月99美元。

Plan Two(Premium)是149美元& $ 120

计划三(白金)是399美元& 185

第二页

这是最终用户填写信息的表单。有一个选择 为他们的配偶增加每月35%的折扣。

当他们[b]检查[/ b]添加配偶复选框时,我需要更改总数。

情侣总计

如果计划一(标准),那么$ 198设置费&每月163.35美元。

如果是二号计划(Premium),那么298美元的设置费用和每月198美元。

如果计划三(白金),那么798美元的设置费用&每月305.25美元。

知道如何完成这个吗?

<div class="ccms_form_element cfdiv_checkbox" id="addspouse_container_div"><input type="hidden" name="spouse" value="" alt="ghost">
<input value="Yes" id="addspouse" title="" type="checkbox" name="spouse" class="label_right">
<label for="addspouse" class="full_label">Yes! I want to sign up my spouse and take advantage of the 35% discount. (Couples discount applies to spouse's monthly fee only.)</label><div class="clear"></div><div id="error-message-spouse"></div></div>

<div id="math" style="padding-bottom:4px;">
<p id="sign-up-date-first" style="display: block; "><b>Sign Up Date</b> (Today): <span id="sign-up-date-today" style="border: 0px; background-color: rgb(255, 255, 255); "><?php
echo date("F dS, Y");
?> </span></p>

<p id="signup-fee-result"><b>Review/Setup Fee</b>: <span id="signup-fee-price" style="margin-left: 4px;">$49.00 </span> will be charged: <span class="next-month" id="sign-up-date-six-days"><?php
$monthlydate = mktime(0,0,0,date("m"),date("d")+6,date("Y"));
echo date("F dS, Y", $monthlydate);
?></span>
</p>

 <p id="signup-price-result"><b>Initial Monthly Fee</b>: <span id="signup-monthly-price">$49.00 </span> will be charged: <span class="next-month" id="sign-up-date-next-month"><?php
$monthlydate = mktime(0,0,0,date("m"),date("d")+30,date("Y"));
echo date("F dS, Y", $monthlydate);
?></span></p>
</div>

0 个答案:

没有答案