input radio單選框綁定change事件

 

html頁面:html

<input type="radio" name="sex" value="female">female <input type="radio" name="sex" value="male">male

 

js部分代碼:this

$(document).ready(function() { $('input[type=radio][name=sex]').change(function() { if (this.value == 'female') { console.log("female"); } else if (this.value == 'male') { console.log("male"); } }); });
相關文章
相關標籤/搜索