我有一個按鈕,可以創建2個選擇列表。如何檢測選擇列表中的更改?
$(document).ready(function(){
$("input[name$='addcriteria']").on('click', function() {
var newrow = $("<p>Where <select name='fieldname' class='fieldname'></select>
is <select name='paperSession' class='options'></select></p>");
//--Some other codes that declares the option values of the select field--//
});
}); //End of Document ready
接下來,我想檢測當我選擇列表時創建的操作。
$(".fieldname").on('change',function(){
alert("testing");
});
問題是:我應該把這個動作放在$document).ready(function(){
下嗎?