将 OnCheckedChanged 事件附加到 div.onclick()

发布于 2024-11-04 20:28:25 字数 167 浏览 0 评论 0原文

是否可以向 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 技术交流群。

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

发布评论

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

评论(1

月隐月明月朦胧 2024-11-11 20:28:25

您可以使 div.onclick() 处理程序手动触发 OnCheckedChanged 事件。像这样的东西:

div_onclick(object sender, eventargs e)
{
   checkbox_OnCheckedChanged(null, null); 
}

You can make the div.onclick() handler fire the OnCheckedChanged event manually. Something like this:

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