jQuery .click() 和 ModalPopupExtender
在我的 ASP.NET Web 窗体页面上,有一个 Panel
,它是一个模态弹出窗口(在 ModalPopupExtender)。 com/" rel="nofollow">AJAX 控制工具包)。显然,如果目标控件位于弹出窗口中。仅当我将复选框移出弹出窗口时,以下代码才有效:
$("#checkBox").click(function() {
// do something
});
这是在服务器站点上声明复选框的方式:
<asp:CheckBox runat="server" ID="checkBox" Text="..." ClientIDMode="Static" />
我需要在面板中将处理程序绑定到复选框。有人给我提示吗?
马蒂亚斯
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道弹出窗口是如何在 AJAX 控件工具包中实现的,但我怀疑控件是动态添加到弹出窗口的。
如果是这种情况,您应该这样做(假设您没有使用过时版本的 jQuery):(
请参阅 此处 了解这是如何工作的。)
尝试一下,看看它是否有效。如果您坚持使用旧版本的 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):
(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.