0
當名稱指定數組中的子字段時,jQuery選擇對象的正確方法是什麼?用於數組中子字段的jQuery選擇器?
我spontanously嘗試:
$('select[name=field[subfield]]').change(function(){
alert('houston we have contact');
});
的DOM對象是:
<select name="field[subfield]">
<option>..</option>
<option>..</option>
<option>..</option>
</select>