1
我有一個HTML文檔,用jQuery代碼變化不會觸發事件在AJAX加載的形式
$(function(){
[...]
$("#newNotice").click(function(){
$("#properties").load("testDiagramm.html #NoticeForm");
return false;
});
function showFormValues(){
var s = $("form").serialize();
[... Do things ...]
}
$("input, textarea").change(showFormValues);
});
起初存在HTML文檔中沒有的形式。但我加載不同的表單到文檔中。其中一個請求你可以在這裏看到
$("#properties").load("testDiagramm.html #NoticeForm");
問題是。即代碼行
$("input, textarea").change(showFormValues);
只有在表單被加載時纔會觸發。如果我想要執行showFormValues()函數時,我必須做什麼,當我在公式中更改某些內容時,我稍後加載該內容?
非常感謝您的回答。
拉拉