我有两页第一页主页另一页默认结果。我在主页上有复选框。它的代码看起来像
<div class="col-md-1 padding-lft" style="right:13px;top:3px">
<input id="chkUFtoLoan-1" name="S" value="S" type="checkbox" checked />
</div>
我已经传递了这个值,另一页看起来像是
<?php
$checkbox1 = $_POST["S"];
echo $checkbox1 = $_POST["S"];
?>
现在我有结果两部分买家关闭部分和关于您的贷款。 在结果页面中,我的值为 UPFRONT MIP VALUE
关于您的贷款
<div class="row content green">
<label id="Label3" for="purchasePrice" class="pull-left ">Upfront MIP Financed</label>
<label id="financedmip-Buyer" class="pull-right">$<?php echo round($arrFirstBox["upfrontmipamt"],2);?>
买家关闭部分
<label id="Label3" for="purchasePrice" class="pull-left ">Upfront MIP Financed</label>
<label id="financedmip-Buyer" class="pull-right">$<?php echo round($arrFirstBox["upfrontmipamt"],2);?>
如果用户选中,则两个值相同复选框主页值转到关于您的贷款或用户复选框未选中的值BUYER CLOSE TO SECTION。 我写了脚本代码
$('input[Name="S"]').mouseenter(function() {
var text = "";
$('#financedmip:checked').each(function(){
text += $(this).val('<?php echo round($arrFirstBox["upfrontmipamt"],2);?>')+',';
});
text = text.substring(0,text.length-1);
$('#financedmip-Buyer').val(0);
});
我的剧本我做错了请任何人发现错误了吗?请任何人找到我的错误?
答案 0 :(得分:1)
使用
isset($ _ POST [ “S”])
在你的php脚本中验证它。如果设置/选中该值,您可以导航到“关于您的贷款”部分,转到其他部分。
if(isset($_POST["S"])){
//ABOUT YOUR LOAN
} else {
// TO BUYER CLOSE TO SECTION
}