我有下面的代碼複選框在頁面上。當頁面加載時,我需要默認選中它們。這顯示查詢的結果。現在,當其中一個複選框未選中時,需要提交表單並顯示不同的查詢結果。即使我取消選中一個框,檢查總是被檢查。有人可以在這裏指導我嗎?感謝在頁面加載默認單選按鈕
<form action="abc.cfm?show=yes" method="post" name="myform">
<table align="center"><tr>
<td>
<input type="checkbox" checked="checked" name="chkbox" id="chkbox1"> <font size="3+"><strong> Agreement Only</strong> </font>
<input type="hidden" name="chk" id="chk1">
<input type="checkbox" checked="checked" name="chkbox" id="chkbox2"> <font size="3+"><strong>Active Employees</strong> </font>
<input type="hidden" name="chk" id="chk2">
</td>
<td>
<input type="Submit" name="submitnow" value="View now">
</td>
</table>
</form>
<cfif isdefined("form.chk1")>
query 1
<cfelseif isdefined("form.chk2")>
query 2
</cfif>
當你說你需要保存所選的單選按鈕狀態時,你是什麼意思?你需要服務器端還是客戶端? – 2013-03-27 16:54:40
在客戶端... – user747291 2013-03-27 17:18:34