jQuery .click() 和 ModalPopupExtender

发布于 2024-11-29 04:46:57 字数 501 浏览 2 评论 0 原文

在我的 ASP.NET Web 窗体页面上,有一个 Panel,它是一个模态弹出窗口(在 ModalPopupExtender)。 com/" rel="nofollow">AJAX 控制工具包)。显然,如果目标控件位于弹出窗口中。仅当我将复选框移出弹出窗口时,以下代码才有效:

$("#checkBox").click(function() {
  // do something
});

这是在服务器站点上声明复选框的方式:

<asp:CheckBox runat="server" ID="checkBox" Text="..." ClientIDMode="Static" />

我需要在面板中将处理程序绑定到复选框。有人给我提示吗?

马蒂亚斯

On my ASP.NET Web Forms page, there is a Panel which is a modal popup (using ModalPopupExtender in the AJAX Control Toolkit). Apparently, the jQuery .click(f) method does not work if the target control is in a popup. The following code works only if I move the CheckBox out of the popup:

$("#checkBox").click(function() {
  // do something
});

This is how the checkbox is declared on the server site:

<asp:CheckBox runat="server" ID="checkBox" Text="..." ClientIDMode="Static" />

I need to bind a handler to the checkbox, while in the panel. Does anybody habe a hint for me?

Matthias

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

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

发布评论

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

评论(1

坚持沉默 2024-12-06 04:46:57

我不知道弹出窗口是如何在 AJAX 控件工具包中实现的,但我怀疑控件是动态添加到弹出窗口的。
如果是这种情况,您应该这样做(假设您没有使用过时版本的 jQuery):(

$("#checkBox").live('click', function() {
  // do something
});

请参阅 此处 了解这是如何工作的。)

尝试一下,看看它是否有效。如果您坚持使用旧版本的 jQuery,我建议使用 LiveQuery 插件。

I don't know how the popups are implemented within the AJAX Control toolkit, but I suspect that the controls are added to the popup dynamically.
If that is the case, you should do this (assuming you're not using an outdated version of jQuery):

$("#checkBox").live('click', function() {
  // do something
});

(See here to understand how this works.)

Try that and see if it works. If you're stuck with an old version of jQuery, I recommend using the LiveQuery plugin.

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