使用 ASP.Net 3.5 的 ListView 控件内的复选框
当 ListView 中的 CheckBox 未选中时,我需要弹出窗口吗?
When CheckBox is unchecked in a ListView i need to get a popup window?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我创建了一个 JS 函数,然后传递你的列表的 id,就像
我认为的那样
I have make a JS function and just pass id of your list like as
I think this is that
对此不太确定,但假设,您可以为每个复选框指定一个类,例如 chkbox,然后使用一些 jquery 代码来处理单击事件:
$('chkbox').click(function() {
Alert("这是您放置弹出代码的位置");
});
你可以在这里使用 window.open
Not too sure about this, but hypothetically, you could give each checkbox a class, eg chkbox, and then have some jquery code to handle a click event:
$('chkbox').click(function() {
alert("here is where you put your popup code");
});
You could use window.open here
或
如何在 jQuery 中检查复选框是否被选中?
or
How to check whether a checkbox is checked in jQuery?