UserVoice 小部件关闭按钮事件覆盖

发布于 2024-08-21 02:32:25 字数 357 浏览 10 评论 0原文

我希望能够修改或添加 UserVoice 小部件的 a href 标签的 onclick。

该代码是为我生成的。

<a title="Close Dialog" id="uservoice-dialog-close" onclick="UserVoice.Dialog.close(); return false;" href="#close"><span style="display: none;">Close Dialog</span></a>

我想调用那里的内容,但在单击关闭时添加我自己的方法。我不会或不想修改生成此代码的源代码,而是在文档准备好后添加到它。

I want to be able to modify or add to the onclick of the a href tag for a UserVoice widget.

This code is generated for me.

<a title="Close Dialog" id="uservoice-dialog-close" onclick="UserVoice.Dialog.close(); return false;" href="#close"><span style="display: none;">Close Dialog</span></a>

I want to call what is there but add my own method when clicking close. I do not or do not want to modify the source that generates this code but rather add to it upon document ready.

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

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

发布评论

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

评论(1

涙—继续流 2024-08-28 02:32:25

jQuery 来救援。

这有效:

$("#uservoice-dialog-close").live("click", function() {
    DoFunction();
});

我正在尝试:

$("#uservoice-dialog-close").bind("click", function() {
    DoFunction();
});

jQuery to the rescue.

This works:

$("#uservoice-dialog-close").live("click", function() {
    DoFunction();
});

I was trying:

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