我有一个提交按钮,我附加了一个.one()
鼠标事件,否则如果你不小心双击它会发送两次信息。
唯一的问题是,一旦发送信息,我刷新包含div
(我不会刷新整个页面),然后显示新信息。但是如果你去添加更多信息,它将不允许你再次单击提交按钮,因为它已被点击。
我认为它会刷新div
它会重置....但它没有。我该如何解决这个问题?
感谢名单
修改
所以在JOE的帮助下我做到了这一点。但双击时仍会发射两次。我做对了吗?
var clickActive = false;
$("body").on("click", '.post_comment_button', function(e){
e.preventDefault();
if(clickActive) return;
else {
clickActive = true;
var post = $(this).parents('.update_comment').parents('#post_comment');
var anchor = $(post).siblings('.comment_list').find('ul:first');
var comment = $(this).parents('.update_comment').children('textarea.post_comment').val();
var user = $(this).parents('.update_comment').children('input.user').val();
var msg_id = $(this).parents('.update_comment').children('input.message_id').val();
if (comment == '') loadComments();
else {
$.post('messages.php', {
comment: comment,
message_id: msg_id,
post_comment: 'true' }, function(data) {
//create new comment//
$('body').append(data);
var newcomment = "<li><div class='comment_container'><div class='date'>less than 1 minute ago</div><div class='name'>" + user + " </div><div class='info_bar'><div class='edit_comment'><a href='#' class='comment_edit'>Edit</a></div><span>|</span><a href='#' class='delete_comment'>Delete</a></div><div class='fadeOut_comment'><div class='posted_comment'> " + nl2br(htmlEntities(comment.trim())) + " </div></div></li>";
$(post).slideUp(400);
$(newcomment).fadeIn(500, function() {
loadComments();
}).appendTo(anchor);
clickActive = false;
});
}
}
});
答案 0 :(得分:2)
另一种解决方案是禁用该按钮,以便用户无法连续两次单击它。 在代码中调整以下逻辑。
//Bind a click event handler to your button
$("body").on("click", "you_button_selector", function(e)
{
//Prevent any default behaviour, we're dealing with this ourselves
e.preventDefault();
//First, disable the button
$("your_button_selector").attr("disabled", "disabled");
//Then, make your ajax call
$.ajax(
{
url: "http://example.com",
success: function(data)
{
//When your ajax call returns, enable the button again
$("your_button_selector").removeAttr("disabled");
}
});
});