所以我有一個基本形式簡單的jQuery選擇
<div id="webForm_Contact">
<form action="">
<label for="form_fName"> Full name: </label>
<input type="text" id="form_fName"><br />
<label for="form_email" > Email: </label>
<input type="text" id="form_email"><br />
<label for="form_phone"> Phone </label>
<input type="text" id="form_phone"><br />
<label for=""> Location: </label>
<label for="form_radio_london"> London</label>
<input type="radio" id="form_radio_london" value="London">
<label for="form_radio_Toronto"> Toronto</label>
<input type="radio" id="form_radio_Toronto" value="Toronto">
<label for="form_radio_other"> Other</label>
<input type="radio" id="form_radio_other" value="Other">
<!-- radio select here-->
<div id="otherCity">
<label for="form_otherCity"> Other City </label>
<input type="text" id="form_otherCity">
</div>
<br />
<input type="submit" value="Submit">
</form>
</div>
和簡單的jQuery :: 編輯::改變了代碼一點,因爲我意識到這是做更多的則需要它。
$(文件)。就緒(函數(){
if($("#form_radio_other").is(':checked')){
$("#otherCity").css("display:inline");
}
else{
$("#otherCity").css("display:none");
}
});
什麼它應該做的,就是如果單擊「其他」單選按鈕,取消隱藏「otherCity」分區允許表單輸入,其他明智它需要隱藏什麼,我不明白是什麼是錯的。我不是在瀏覽器相關的問題與它的自身的代碼獲得,只是問題。任何幫助,將不勝感激。
這樣做,謝謝! – CTully12