我有一個複選框,此代碼檢查默認情況下框,如果不加以控制,留選中
<td align="right">Include In Top Sellers?</td>
<td>
<input type="hidden" name="include_top"
value="0"><input type="checkbox"
name="include_top"
id="include_top"
value="1" <?php echo (($_POST["include_top"] == "1") or ($res["include_top"] == "1")) ? "checked='checked'" : ""; ?>
autocomplete="off"/>
</td>
</tr>
我需要有此框默認選中,但也允許它被選中,如果保存留選中。
當您取消選中並保存它時,它會保持檢查狀態嗎? – Highlight