作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 JQuery 中提交表单,但是
<input type="submit" id="yesBank" />
$('#yesBank , #worldBank').on("click", function (e) {
e.preventDefault();
$.blockUI({
message: 'Getting List'
});
//Want to unbind this click JS
//Want to click on submit button from here $(#yesBank).click("");
//Unbinding is done so that it does not execute this
//I am bound to click this button as server is handling a condition on click of it. but i have to display block ui too
});
我的目的是阻止 UI。实际上,当我像这样阻止 UI 时,控件不会转到服务器,页面也不会重新加载。即使我删除了 PreventDefault。有人可以给我看一下片段吗?
最佳答案
You can use chaining
$('#yesBank , #worldBank').on("click", function (e) {
// rest code goes here
}.off("click")
关于javascript - 如何在JQuery中解除点击和点击提交按钮的绑定(bind)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32247135/
我是一名优秀的程序员,十分优秀!