欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

按钮的Ajax请求时一次点击两次提交的解决方法

程序员文章站 2022-11-22 20:13:20
页面中的按钮的type是submit的: ajax的请求...

页面中的按钮的type是submit的: <input type="submit" value="create" id="submit" />

ajax的请求,在jquery中是:

$(function () {
$('#submit').click(function () {
var creategenreform = $('#creategenreform');
if (creategenreform.valid()) {
var obj = {
name: $('#name').val(),
description: $('#description').val()
};
var jsonserialized = json.stringify(obj);
$.ajax({
type: "post",
url: creategenreform.attr('action'),
datatype: "json",
contenttype: "application/json; charset=utf-8",
data: jsonserialized,
success: function (result) {
alert(result.message);
},
error: function (error) {
alert("there was an error posting the data to the server: " + error.responsetext);
}
});
}
});
});

发生两次提交的原因是在执行完ajax请求后,并没有阻止submit的行为,所以解决方法有两种:

1、不使用type为submit类型的按钮,而是使用type是button的按钮。

2、在$('#submit').click函数中,最后加一行return false;,即可阻止submit。

一点说明:为什么在标题中要嵌入英文?原因是为了能够让国外的网友能查询到这篇文章。平常在google上查资料的时候,经常参考国外网友的博客,帮助我解决了很多问题,所以我也想让他们能够参考我写的内容。当然文中我不可能全部译为英文,所以我尽量把代码粘全,靠代码说话吧。

以上所述是小编给大家介绍的按钮的ajax请求时一次点击两次提交的解决方法,希望对大家有所帮助