我有以下代碼新元素創建,調用jQuery的方法,準備好文件後,無法正常工作
$(document).ready(function() {
// When change the value in select it will send id to controller in order to return the price of service.
$(".select-service").change(function(){
var element_id = $(this).attr('id');
$.post("/services/get_price_of", {
message: this.value
},
function(data){
$("#" + element_id).parent().find(".price-input").val(data);
})
});
});
頁面加載一個選擇,但我可以添加更多的動態選擇。問題是,對於所有選擇動態添加,事件提前不起作用。 有人可以幫我嗎?
問候。
P.D:對不起,我的英語不好。