模拟有限双击 jQuery

发布于 2024-11-27 17:19:18 字数 65 浏览 0 评论 0原文

您好,我想通过 1 次实际单击来执行 2 次单击 html 元素。

怎么做呢?

谢谢

Hi I want to perform 2 click on html element by doing 1 real click.

How to do that?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

扮仙女 2024-12-04 17:19:18

您可以附加相同的处理程序两次来模拟点击两次。

You can attach the same handler twice to simulate clicks 2 times.

二货你真萌 2024-12-04 17:19:18

设置一个变量来跟踪是否第一次单击,设置为 true,然后触发第二次单击。第二次单击时,我们执行任何操作并重置已经单击的变量,以便当用户再次单击时它已准备就绪。

  var alreadyClicked = false;
    $("#clickEl").click(function(){ 
       if(!alreadyClicked)
       {
          alreadyClicked = true;
          $(this).trigger("click");
       }else{
         alreadyClicked = false;
         //this is the double click so we perform our actions here
       }
    });

Set a variable to track if first time clicked, set to true, and fire the second click. Upon the second click we perform whatever actions and reset the alreadyClicked variable so when the user clicks again it is ready.

  var alreadyClicked = false;
    $("#clickEl").click(function(){ 
       if(!alreadyClicked)
       {
          alreadyClicked = true;
          $(this).trigger("click");
       }else{
         alreadyClicked = false;
         //this is the double click so we perform our actions here
       }
    });
冷心人i 2024-12-04 17:19:18
 $('#elem').click (function (e)
 {
    var target = $(e.target);
    if (!target.data ('clicked'))
    {
       alert ('first click');
       target.data ('clicked', '1');
       target.click ();
    }
    else
    {
       alert ('second click');
    }

    target.data ('clicked', null);
 }
 );
 $('#elem').click (function (e)
 {
    var target = $(e.target);
    if (!target.data ('clicked'))
    {
       alert ('first click');
       target.data ('clicked', '1');
       target.click ();
    }
    else
    {
       alert ('second click');
    }

    target.data ('clicked', null);
 }
 );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文