将 OnCheckedChanged 事件附加到 div.onclick()
是否可以向 div 触发 ASP.NET 复选框的 OnCheckedChanged
事件? 因此,当我单击 div 时,应该触发 OnCheckedChanged
事件。
复选框位于转发器内,复选框和标签由 div 包围。
这可能吗?
Is it possible to fire the OnCheckedChanged
event of an ASP.NET checkbox to a div?
So, when I click on the div, the OnCheckedChanged
event should fire.
The checkboxes are inside a repeater and the checkbox and a label are surrounded by a div.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使 div.onclick() 处理程序手动触发 OnCheckedChanged 事件。像这样的东西:
You can make the div.onclick() handler fire the OnCheckedChanged event manually. Something like this: