0
A
回答
0
試試這個:
function(item) {
alert("Handler for .submit() called.");
item.preventDefault();
// rest of the code
}
OR
$("#form_id").validate({
submitHandler: function (form) {
// do code
return false;
}})
+0
@ user3287550它的確如此。 –
0
既然你用jQuery標記你的問題。
$('form').submit(Popup); //this inside the function is the form.
// The first parameter is the event.
,並確保從Popup
返回false如果Popup
不是構造函數,使用駝峯命名
0
你現有的代碼應該工作,如果你只是修改它只是有點。添加return
您Popup
方法調用
<form onsubmit="return Popup(this)">
而在你的方法聲明的末尾添加return false
Popup: function(item){
// your code goes here
return false; //add this
}
相關問題
- 1. SharePoint 2007:通過代碼不激活功能激活事件激活功能
- 2. 無法獲取的onchange功能激活
- 3. Tensorflow激活功能
- 4. 功能激活Sharepoint
- 5. 取消激活Smarty Streets功能
- 6. 從代碼激活事件背後的功能
- 7. 事件觸發時的Javascript激活功能
- 8. 如何激活flex中的click事件?
- 9. 如何取消激活sklearn的默認停用詞功能TfidfVectorizer
- 10. 如何取消激活Xcode git功能? (刪除git的整合)
- 11. onclick事件激活
- 12. VBA激活如圖不同的功能
- 13. C#表單激活和取消激活事件
- 14. Theano HiddenLayer激活功能
- 15. 點擊激活div功能
- 16. 激活節點功能
- 17. 在取消激活/激活事件中刪除事件監聽器 - AS3
- 18. 用戶控件和功能激活
- 19. 郵件功能和單詞「激活」
- 20. 如何激活用於Eclipse的EPIC Perl插件的功能
- 21. 當onclick事件被激活時禁用onmouseout功能
- 22. 如何在當時激活keyup事件?
- 23. 如何點擊黃瓜功能郵件中的激活鏈接?
- 24. 如何在本地文件上激活Chrome的Cookie功能
- 25. 如何取消激活aui功能:複選框標籤?
- 26. 暫時取消激活onchange事件
- 27. 如何激活視圖時獲取?
- 28. 獲取功能的日曆事件fullCalendar
- 29. 如何在觸摸事件中獲取所有激活的像素?
- 30. 在c#winforms中,如何獲取激活窗口並轉發它的事件
什麼是你真正想達到什麼目的? – th1rdey3
'Popup'返回false'會修復它 – gdoron