0
如何定位窗口,警報和兩個功能如何定位功能一個ajaxvalidation函數內部
功能:「saveEdit」,並設置在我的AJAX驗證引擎「的setInterval」
?
<script>
$(document).ready(function() {
// SUCCESS AJAX CALL, replace "success: false," by: success : function() { callSuccessFunction() },
$("#form1").validationEngine({
ajaxSubmit: true,
ajaxSubmitFile: "note/note.php",
window.alert("Report Sent!");
function saveEdits() {//write a confirmation to the user
document.getElementById("update").innerHTML="Report Sent!";
setInterval(function(){document.getElementById("update").innerHTML="";},3000);
}
})
});
</script>
我不知道熱定位正確,它總是設置驗證引擎錯誤,當我嘗試把它放進去。
我想你是指這個插件? http://www.position-absolute.com/articles/using-form-ajax-validation-with-the-jquery-validation-engine-plugin/。您是否在嘗試成功驗證後調用'saveEdits'? 'setInterval'的目的是什麼? –