问候
我在提交插件上使用了jquery disable,但是我遇到了问题.如果我禁用了提交按钮,则它们不会传递回服务器,因此我无法确定按下了哪个按钮.这正常吗?有什么我可以做的吗?
我真的不想重组我的网站,所以我必须在提交表单时设置一个变量,以告知按下了哪个按钮.
有任何想法吗 ?
最佳答案
这是我刚刚在a jQuery forum中找到的解决方法:
原文链接:https://www.f2er.com/html/530556.html<script type="text/javascript">
$(document).ready(function() {
$("#sendSearch").click(function() {
$('#loadingDiv').show();
$('#sendSearch').attr("disabled","disabled");
// these two lines are the workaround
this.form.submit();
return true;
});
});
</script>