防止多次点击按钮

时间:2013-05-23 13:22:01

标签: javascript jquery

我有以下jQuery代码,以防止双击按钮。它工作正常。我正在使用Page_ClientValidate()来确保仅在页面有效时才会阻止双击。 [如果存在验证错误,则不应设置标志,因为没有回发到服务器的启动]

有没有更好的方法可以防止在页面加载之前再次点击按钮?

我们是否可以仅在页面导致回发到服务器时设置标志isOperationInProgress = yesIndicator?在用户第二次点击按钮之前是否有适合的event

注意:我正在寻找一种不需要任何新API的解决方案

注意:这个问题不重复。在这里,我试图避免使用Page_ClientValidate()。此外,我正在寻找一个event我可以移动代码,以便我不需要使用Page_ClientValidate()

注意:我的方案中没有涉及ajax。 ASP.Net表单将同步提交给服务器。 javascript中的按钮单击事件仅用于防止双击。表单提交是使用ASP.Net同步的。

现有代码

$(document).ready(function () {
  var noIndicator = 'No';
  var yesIndicator = 'Yes';
  var isOperationInProgress = 'No';

  $('.applicationButton').click(function (e) {
    // Prevent button from double click
    var isPageValid = Page_ClientValidate();
    if (isPageValid) {
      if (isOperationInProgress == noIndicator) {
        isOperationInProgress = yesIndicator;
      } else {
        e.preventDefault();
      }
    } 
  });
});

参考

  1. Validator causes improper behavior for double click check
  2. Whether to use Page_IsValid or Page_ClientValidate() (for Client Side Events)
  3. @Peter Ivan在上述参考文献中注意:

      

    重复调用Page_ClientValidate()可能会导致页面过于突兀(多个警报等)。

16 个答案:

答案 0 :(得分:35)

我发现这个解决方案很简单,对我有用:

<form ...>
<input ...>
<button ... onclick="this.disabled=true;this.value='Submitting...'; this.form.submit();">
</form>

此解决方案见于: Original solution

答案 1 :(得分:12)

JS通过使用事件属性提供了一个简单的解决方案:

$('selector').click(function(event) {
  if(!event.detail || event.detail == 1){//activate on first click only to avoid hiding again on multiple clicks
    // code here. // It will execute only once on multiple clicks
  }
});

答案 2 :(得分:11)

单击时禁用该按钮,在操作完成后启用它

$(document).ready(function () {
    $("#btn").on("click", function() {
        $(this).attr("disabled", "disabled");
        doWork(); //this method contains your logic
    });
});

function doWork() {
    alert("doing work");
    //actually this function will do something and when processing is done the button is enabled by removing the 'disabled' attribute
    //I use setTimeout so you can see the button can only be clicked once, and can't be clicked again while work is being done
    setTimeout('$("#btn").removeAttr("disabled")', 1500);
}

working example

答案 3 :(得分:5)

我通过@Kalyani修改了solution,到目前为止,它的工作非常好!

$('selector').click(function(event) {
  if(!event.detail || event.detail == 1){ return true; }
  else { return false; }
});

答案 4 :(得分:3)

在回调的第一行中禁用指针事件,然后在最后一行恢复它们。

element.on('click', function() {
  element.css('pointer-events', 'none'); 
  //do all of your stuff
  element.css('pointer-events', 'auto');   
};

答案 5 :(得分:2)

使用count,

 clickcount++;
    if (clickcount == 1) {}

再次回来后,clickcount设置为零。

答案 6 :(得分:2)

我们可以使用on和off点击来防止多次点击。我尝试了它的应用程序,它按预期工作。

$(document).ready(function () {     
    $("#disable").on('click', function () {
        $(this).off('click'); 
        // enter code here
    });
})

答案 7 :(得分:1)

可能会有所帮助并提供所需的功能:

&#13;
&#13;
$('#disable').on('click', function(){
    $('#disable').attr("disabled", true);
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="disable">Disable Me!</button>
<p>Hello</p>
&#13;
&#13;
&#13;

答案 8 :(得分:0)

您执行此操作的一种方法是设置计数器,如果数字超过某个数字,则返回false。 这很容易。

var mybutton_counter=0;
$("#mybutton").on('click', function(e){
    if (mybutton_counter>0){return false;} //you can set the number to any
    //your call
     mybutton_counter++; //incremental
});

确保if语句在您的通话之上。

答案 9 :(得分:0)

这应该适合你:

$(document).ready(function () {
    $('.applicationButton').click(function (e) {
        var btn = $(this),
            isPageValid = Page_ClientValidate(); // cache state of page validation
        if (!isPageValid) {
            // page isn't valid, block form submission
            e.preventDefault();
        }
        // disable the button only if the page is valid.
        // when the postback returns, the button will be re-enabled by default
        btn.prop('disabled', isPageValid);
        return isPageValid;
    });
});

请注意,您还应采取服务器端的步骤以防止双重发布,因为并非每个访问您网站的访问者都有礼貌地使用浏览器访问它(更不用说支持JavaScript的浏览器)了。

答案 10 :(得分:0)

如果您正在进行完整的往返回程,您可以让按钮消失。如果存在验证错误,则在重新加载页面时将再次显示该按钮。

首先为你的按钮添加一个样式:

<h:commandButton id="SaveBtn" value="Save"
    styleClass="hideOnClick"
    actionListener="#{someBean.saveAction()}"/>

然后点击时隐藏它。

$(document).ready(function() {
    $(".hideOnClick").click(function(e) {
        $(e.toElement).hide();
    });
});

答案 11 :(得分:0)

经过几个小时的搜索,我以这种方式修复了它:

    old_timestamp == null;

    $('#productivity_table').on('click', function(event) {

    // code executed at first load
    // not working if you press too many clicks, it waits 1 second
    if(old_timestamp == null || old_timestamp + 1000 < event.timeStamp)
    {
         // write the code / slide / fade / whatever
         old_timestamp = event.timeStamp;
    }
    });

答案 12 :(得分:0)

只需将此代码复制粘贴到您的脚本中,然后使用您的按钮ID修改#button1 ,它就可以解决您的问题。

    UPDATE candidates SET candidates.remark='FAIL' WHERE (select 
    count(candidate_subjects.id) AS total_pass from candidates, 
    candidate_subjects where candidates.id=candidate_subjects.candidate_id 
    and (candidate_subjects.ca_score + candidate_subjects.exam_score) >= 40) < 6

答案 13 :(得分:0)

使用,您应该使用jQuery的[one] [1]:

  

.one(events [,data],handler)返回:jQuery

     

描述:将处理程序附加到元素的事件。每种事件类型的每个元素最多只能执行一次处理程序。

查看示例:

使用jQuery:https://codepen.io/loicjaouen/pen/RwweLVx

// add an even listener that will run only once
$("#click_here_button").one("click", once_callback);

答案 14 :(得分:0)

纯 JavaScript:

  1. 为被交互的元素设置一个属性
  2. 超时后移除属性
  3. 如果元素有属性,什么都不做

const throttleInput = document.querySelector('button');

throttleInput.onclick = function() {
  if (!throttleInput.hasAttribute('data-prevent-double-click')) {
    throttleInput.setAttribute('data-prevent-double-click', true);
    throttleInput.setAttribute('disabled', true);
    document.body.append("Foo!");
  }

  setTimeout(function() {
    throttleInput.removeAttribute('disabled');
    throttleInput.removeAttribute('data-prevent-double-click');
  }, 3000);
}
<button>Click to add "Foo"!</button>

答案 15 :(得分:0)

我们还将按钮设置为 .disabled=true。我添加了类型为 input 的 HTML 命令 hidden 以识别计算机服务器是否已将事务添加到数据库中。

示例 HTML 和 PHP 命令:

<button onclick="myAddFunction(<?php echo $value['patient_id'];?>)" id="addButtonId">ADD</button>
<input type="hidden" id="hasPatientInListParam" value="<?php echo $hasPatientInListParamValue;?>">

示例 Javascript 命令:

function myAddFunction(patientId) { 
  document.getElementById("addButtonId").disabled=true;

  var hasPatientInList = document.getElementById("hasPatientInListParam").value;

  if (hasPatientInList) {
    alert("Only one (1) patient in each List.");
    return;
  }

  window.location.href = "webAddress/addTransaction/"+patientId; //reloads page
}

重新加载页面后,计算机会自动将按钮设置为 .disabled=false。目前,这些操作防止了我们案例中的多次点击问题。

希望这些也能帮到你。

谢谢。