在javascript中模拟双击asp.net按钮

发布于 2024-10-15 12:32:41 字数 83 浏览 4 评论 0原文

我有一个名为“更新”的 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 技术交流群。

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

发布评论

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

评论(1

最单纯的乌龟 2024-10-22 12:32:41

双击按钮几乎没有意义,因为每次单击都会触发它的 onclick 事件。

最安全的方法是使用普通的 onclick 构建您自己的“双击”事件。所需的 JS:

function ClickMe(oButton) {
    if (oButton.getAttribute("clicked") == "1") {
        alert("double click!");
        oButton.setAttribute("clicked", "0");
        return;
    }

    oButton.setAttribute("clicked", "1");
    window.setTimeout(function() { oButton.setAttribute("clicked", "0"); }, 500);
}

和 HTML:

<button type="button" onclick="ClickMe(this);">Click</button>

测试用例: 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:

function ClickMe(oButton) {
    if (oButton.getAttribute("clicked") == "1") {
        alert("double click!");
        oButton.setAttribute("clicked", "0");
        return;
    }

    oButton.setAttribute("clicked", "1");
    window.setTimeout(function() { oButton.setAttribute("clicked", "0"); }, 500);
}

And the HTML:

<button type="button" onclick="ClickMe(this);">Click</button>

Test case: http://jsfiddle.net/yahavbr/HGJEG/

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