0
我有兩個單選按鈕,當用戶單擊一個單選按鈕並單擊按鈕時,它應該保持選中狀態。但是,即使我使用第一個單選按鈕進行選擇和搜索,發生的情況仍然是最後一個。保存表單提交後單選按鈕
我的代碼:
<input type="radio" <?php if(isset($_POST['gender']) && isset($_POST['gender']) == 'male') echo "checked='checked'"; ?> name="gender" id="male" value="male" onclick="getGender(this.value);" /><strong>Groom</strong>
<input type="radio" <?php if(isset($_POST['gender']) && isset($_POST['gender']) == 'female') echo "checked='checked'"; ?> name="gender" id="female" value="female" onclick="getGender(this.value);" /><strong>Bride</strong>
在此先感謝。