我想限制在表單中傳遞的值。因此,例如:修改表單提交字符串
<form action="" method="get">
<input name="check1" type="radio" value="123" checked>
<input name="check2" type="radio" value="456" checked>
<input name="check3" type="radio" value="789" checked>
<input type="submit" title="submit" id="btn_submit">
</form>
現在如果我轉到提交,我得到類似下面的網址
www.domain.com/?check1=123 & CHECK2 = 456 & check3 = 789
如何控制發送'check3'?所以,這個網址被
www.domain.com/?check3=789
所以,即使用戶點擊check1,你不希望它包含在提交?那爲什麼是這種形式? – Barmar