$(document).ready(function(){
$("#enviar").click(function(e){
e.preventDefault();
//prevent run 2 or more times if the user clicks the button multiple times to send
$.post(url,{data:data1,data2:data2},function(rp){
});
});
});
如果用户重复单击按钮,则防止发送 2 次“帖子”,而不禁用提交按钮