我想取消某些情況下的帖子更新,而無需重新加載整個頁面。WordPress的:鉤後更新按鈕或表格進行驗證
我已經試過:
// publish is the id of the Update button.
$('#publish').click(function(){
return false;
});
// post is the id of the corresponding form.
$('#post').submit(function(){
return false;
});
在這兩個代碼它不提交表單,但更新按鈕保持禁用,而阿賈克斯裝載機GIF被顯示。
我該怎麼做?提前致謝。
是的,它沒有。但如果我通過按Enter鍵或使用其他方式提交表單,驗證將不會運行。所以你需要處理「提交」。我嘗試添加我的處理程序,並在我的情況下打破了自動保存。 – karevn