<input type="checkbox" value="On" name="policy" id="policy"></font>
<b><font face="Verdana" color="#ff0000" size="1">*</font></b>By checking the box, you are verifying with your digital signature that you have read and agree to all terms and conditions of the <a href="Anico_2013-08-26.pdf" target="_blank">FEG agent agreement</a>.
</td>
</tr>
<tr class="gr">
<td class="rowdot_lno">Do you agree?:</td>
<td class="rowdot_lno">
<input type="checkbox" value="On" name="iagree" id="iagree">
<b><font face="Verdana" color="#ff0000" size="1">*</font></b>I understand that I will be charged $24.95.
</td>
</tr>
我前必須檢查需要兩個複選框具有<form method="post" action="enroller.dhtml" name="mainform" onSubmit="update_prices()">
和一個按鈕<input type="submit" value="Continue">
我有表格可提交
我已經嘗試了一些東西,但無濟於事。可以提交表單而不檢查複選框。這裏是我嘗試過的最新版本的jQuery。
$('input[type=checkbox]').each(function() {
if($(this).is(':checked')) {
return true;
}
});
alert("Please select at least one to upgrade.");
return false;
});
此外,我發現這在小提琴,但它不是真的工作..我試圖定製它,以滿足我的需求。
http://jsfiddle.net/shryme/D3Ldj/
您在關聯的jsfiddle似乎是工作,是一個完全不同的事情 –
到底是什麼不行?即使未檢查兩個框,表單是否也會提交? – Sebsemillia
是表單提交時沒有檢查這些框。 –