使用 jQuery 防止点击操作

IT技术 javascript jquery events onclick
2021-03-06 01:02:40

有一些与 onclick 事件操作的链接

<a href="#" onclick="alert('panic!')">Let's panic</a>
<a href="#" onclick="alert('panic!')" disabled="disabled">I can't panic no more</a>

我需要在不删除 onclick 操作的情况下防止在具有禁用属性的链接上执行事件操作。

$('a[disabled]').click(function(e){
  e.stopPropagation();
  return false;
});

这段代码对我没有帮助。

更新即使此代码也不起作用

<html><head><script type='text/javascript' src='jquery-1.3.2.js'></script></head>
<body>
<a href='#' onclick="alert('HA-ha!')" disabled="disabled" class="disabled">TEST</a>
<script type="text/javascript">
    $('a[disabled], a.disabled').click(function(e){
        console.log('override?');
        e.stopImmediatePropagation();           
            e.preventDefault();
        e.stopPropagation();
        return false;       
    });
</script>
</body></html>
5个回答

jQuery 不会解决这个 OOTB。它可以提供帮助,但如果您只是将它们附加到元素stopPropagation, stopImmediatePropagation, preventDefault,return false都不起作用。您需要覆盖元素的点击处理程序。

但是,您在问题中声明“不删除 onclick 操作”因此,您需要在触发事件时覆盖默认行为(与简单地为禁用的锚点null输出onclick属性的更简洁方法相反):

这就是我的意思:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<title>Disable clicks</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
</head>
<body>
  <a href="#" onclick="alert('panic!')">Let's panic</a>
  <a href="#" onclick="alert('panic!')" disabled="disabled">I can't panic no more</a>

  <script>
  $('a[onclick]').each(function(){
    $(this).data('onclick', this.onclick);

    this.onclick = function(event) {
      if($(this).attr('disabled')) { // HERE
        return false;
      };

      $(this).data('onclick').call(this, event || window.event);
    };
  });
  </script>
</body>
</html>

演示在这里。

那里的方法是onclick使用抢占逻辑覆盖内联点击处理程序 ( ) 以捕获锚点被“禁用”的情况,然后取消事件(使用return false)。

这样做的好处是要再次启用锚点,您只需.removeAttr('disabled')在其上即可。

@dcneiner:是的,这是必需的。请注意,我们只是在onclick浏览器调用的内联事件处理程序 ( ) 中,而不是jQuery 规范化和调用的处理程序。
2021-04-21 01:02:40
我用eval(event.currentTarget.getAttribute('onclick'));而不是$(this).data('onclick').call(this, event || window.event);. 两种解决方案都有效。谢谢!
2021-05-01 01:02:40
伟大的!感谢您的解决和解释。正是我需要的。
2021-05-11 01:02:40
漂亮干净的解决方案!是否有event || window.event必要,因为 jQuery 已经对浏览器进行了规范化,并且在event您的代码调用它时对象是清理过的版本?
2021-05-16 01:02:40

disabled不是锚的属性。改用类似的东西rel='disabled'

$('a[rel="disabled"]').click( function() { return false; } );

更新

啊,当然。它仍然会触发 ,alert因为它实际上是内嵌在标记中的!我从不这样做,所以没有注意到。将该点击处理程序从标记中取出并首先在 jQuery 中执行,然后您就可以执行以下操作:

$('a').click( function() {
  if( $(this).attr('rel') == 'disabled' ) { return; }
  // do stuff here when not disabled
  return false; // so your '#' href doesn't get used
} );
是的,jQuery应该能够a[disabled="disabled"]工作,但 IMO 这是一个坏主意。坚持使用有效的标记:)
2021-04-26 01:02:40
无论如何,我已经尝试阻止使用一些名为 disabled 的类。它仍然什么都不做。
2021-05-19 01:02:40

问题是 jQuery 按顺序添加事件。要停止其他事件,您需要停止的事件必须出现您的停止代码之后。由于您的点击中有代码,因此您需要更改订单。这就是我会做的:

<a href='#' onclick="alert('HA-ha!')" class="disabled">TEST</a>
<a href='#' onclick="alert('HA-ha!')">TEST</a>
<script type="text/javascript">
    $('a').each(function(){
        // Cache event
        var existing_event = this.onclick;

        // Remove the event from the link
        this.onclick = null;

        // Add a check in for the class disabled
        $(this).click(function(e){ 
            if($(this).hasClass('disabled')){
                e.stopImmediatePropagation();
                e.preventDefault();
            }                
        });

        // Reattach your original onclick, but now in the correct order
        // if it was set in the first place
        if(existing_event) $(this).click(existing_event);
    });
</script>

好处是只需使用 jQuery: 删除/添加禁用的类:$('a#whatever').addClass('disabled')或者删除它$('a#whatever').removeClass('disabled'),不需要其他清理/设置。

jQuery 添加的任何单击处理程序似乎在标记中添加的那些单击处理程序之后触发。我的解决方案是使用 jQuery 而不是在标记中应用点击处理程序,但您可能没有足够的代码控制来执行此操作。如果你这样做,那么就不要将点击处理程序应用于禁用类的锚标记(并且,是的,我会使用类而不是不合适的属性)。如果您无法控制标记,那么您可能希望使用 jQuery 替换单击处理程序,并将其存储以备以后重新应用。

   $(function() {
      $('a.disabled').each( function() {
         var $this = $(this);
         var click = $this.attr('onclick');
         if (click) {
             $this.data('click',click);
             // add return false to prevent default action
             $this[0].onclick =  function() { return false; };
         }
      });

      $('#restoreClick').click( function() {
          $('a.disabled').each( function() {
              var $this = $(this);
              $this.removeClass('disabled');
              var click = $this.data('click');
              if (click) {
                  $this[0].onclick = click;
              }
          });
      });
   });

测试:

<div>
    <a href="#" onclick="alert('panic!')">Let's panic</a>
    <a href="#" onclick="alert('panic!')" class="disabled">I can't panic no more</a>
</div>
<div>
    <input type="button" id="restoreClick" value="Restore" />
</div>

我今天找到了一个非常简单的解决方案来防止点击,但如果需要,请保留该操作。

<a href="javascript:alert('panic!')" >Let's panic</a>
<a href="javascript:alert('panic!')" disabled="disabled">I can't panic no more</a>

$('a').click(function(e){
    if($(this).attr('disabled')) e.preventDefault();
});

我不太喜欢使用“javascript:”,但这是迄今为止最简单的问题解决方案。

希望能帮助到你!

我喜欢 JavaScript,但我不喜欢使用带有“javascript:”语法的内联 javascript。"javascript:alert('panic!')" <-- 示例。smart-ass 评论的第一个要求是它是“聪明的”;)
2021-04-22 01:02:40
I'm not a huge fan of using "javascript:", but this was by far the simplest solution to the problem. 您更喜欢其他客户端脚本语言吗?
2021-04-24 01:02:40