在javascript中模拟双击asp.net按钮
我有一个名为“更新”的 asp.net 按钮。双击按钮时我必须进行一些测试。但到目前为止,有时它会识别双击,有时则不会。所以我需要在单击一次时模拟双击。
I have a asp.net button called update. I have to carry some test when the button is double clicked. But as of now, sometime it recognizes the double click and sometimes it doesnt. So i need to simulate double click when i click once.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
双击按钮几乎没有意义,因为每次单击都会触发它的 onclick 事件。
最安全的方法是使用普通的 onclick 构建您自己的“双击”事件。所需的 JS:
和 HTML:
测试用例: http://jsfiddle.net/yahavbr/HGJEG/
Double click for button is pretty much meaningless as each click will trigger it's onclick event.
Safest way is build your own "double click" event using the ordinary onclick.. required JS:
And the HTML:
Test case: http://jsfiddle.net/yahavbr/HGJEG/