我一直在使用jquery表單插件來在我的頁面上創建子表單,並且它工作得很好。Jquery表單插件。提交加載表單的問題
但是,當我嘗試提交已使用.load加載的窗體不起作用。
這是我的代碼:
$(document).ready(function() {
//shows loading screen whilst posting via ajax
$().ajaxStart($.blockUI).ajaxStop($.unblockUI);
//post form add_customer ajax
var options = {
target: '#alert',
};
$.ajaxSettings.cache = false;
$('#add_customer').submit(function() {
$(this).ajaxSubmit(options);
return false;
});
$('#theform').hide().load('form.php', function() {
$(this).fadeIn();
return false;
});
});
我缺少什麼?無法在任何地方找到解決方案。
如果你想詳細說明「它不起作用」的含義,它肯定會有很大幫助。客戶端的Javascript中是否存在錯誤?服務器發生錯誤?什麼都沒有發生?你到目前爲止做了什麼來調查和診斷正在發生的事情? – Pointy