javascript-禁用表单提交上的提交按钮的问题
作者:互联网
问候
我在提交插件上使用了jquery disable,但是我遇到了问题.如果我禁用了提交按钮,则它们不会传递回服务器,因此我无法确定按下了哪个按钮.这正常吗?有什么我可以做的吗?
我真的不想重组我的网站,所以我必须在提交表单时设置一个变量,以告知按下了哪个按钮.
有任何想法吗 ?
解决方法:
这是我刚刚在a jQuery forum中找到的解决方法:
<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>
标签:forms,javascript-events,html,javascript,jquery 来源: https://codeday.me/bug/20191210/2103402.html