如何暂时禁止jQuery事件处理?

要暂时禁止jQuery事件处理,请将一个类添加到您的元素中,以防止进一步的代码执行。

示例

您可以尝试运行以下代码以了解如何抑制jQuery事件处理-

<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $(element).click(function(e) {
        e.preventDefault();

        //检查解雇的类
        if ($(this).hasClass('fired') == false) {
          //添加被解雇的类
          $(element).addClass('fired');

          //删除被解雇的类
          $(element).removeClass('fired');  
        }
   });
});
</script>
<style>
.fired {
    font-size: 25px;
    color: green;
}
</style>
</head>
<body>

<h1>This is a heading</h1>
<p class="fired">This is a paragraph.</p>
<p class="fired">This is second paragraph.</p>
</body>
</html>