无限循环中验证并提交表单而不输入?
我使用这个 jquery 代码有一个无限循环,我知道为什么,但我不知道如何解决这个问题:
<form id="submitme">
<input value="" name="n1" id="n1" type="text"/>
<input value="Send" type="button"/>
</form>
<script>
$('#submitme').bind( 'submit', function() {
$.post( 'validate.php', 'value=' + $('#n1').val(), function (data) {
if (data == "true")
$('#submitme').submit();
});
});
</script>
I am having an infinite cycle using this jquery code, I know WHY but I dont know HOW to fix this:
<form id="submitme">
<input value="" name="n1" id="n1" type="text"/>
<input value="Send" type="button"/>
</form>
<script>
$('#submitme').bind( 'submit', function() {
$.post( 'validate.php', 'value=' + $('#n1').val(), function (data) {
if (data == "true")
$('#submitme').submit();
});
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
jQuery.validate 插件可以解决这个问题,我强烈建议您使用it:
但如果您不想使用它,另一种可能性是使用全局变量,如下所示:
只是备注:您放置在表单内的按钮不是提交按钮,因此单击它不会触发
提交
处理程序。您应该将其设为提交按钮:The jQuery.validate plugin takes care of this and I would strongly recommend you using it:
But if you don't want to use it another possibility is to use a global variable, like so:
Just a remark: the button you have placed inside the form is not a submit button so clicking it will not trigger the
submit
handler. You should make it a submit button:我不是 jQuery 专家,但在 Prototype 中,当您为某个操作编写事件处理程序并且不停止默认操作时,它将在所有回调功能完成后执行。因此,通过简单地翻转 if-else 语句,您应该能够避免无限循环:
I am not a jQuery expert, but in Prototype, when you write an event handler for an action and you don't stop the default action, than it will be executed after all of your callback functionality was done. So by simply flipping the if-else statement you should be able to avoid a infinite loop:
我找到了这个解决方案:
I found this solution: