模拟有限双击 jQuery
您好,我想通过 1 次实际单击来执行 2 次单击 html 元素。
怎么做呢?
谢谢
Hi I want to perform 2 click on html element by doing 1 real click.
How to do that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以附加相同的处理程序两次来模拟点击两次。
You can attach the same handler twice to simulate clicks 2 times.
设置一个变量来跟踪是否第一次单击,设置为 true,然后触发第二次单击。第二次单击时,我们执行任何操作并重置已经单击的变量,以便当用户再次单击时它已准备就绪。
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.