ASP.NET 将 OnClick 事件添加到 asp:DropDownList 控件

发布于 2024-09-03 18:09:24 字数 97 浏览 0 评论 0原文

我需要将 OnClick 事件添加到 asp:DropDownList 控件,因为现有事件不能满足我当前的需求。

有可能实现这一目标吗?

非常感谢。

I need to add the OnClick event to asp:DropDownList control, due to the existing events don't satisfy my current needs.

Is it possible to achieve this?

Thank you very much.

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

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

发布评论

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

评论(1

星光不落少年眉 2024-09-10 18:09:24

您希望在 DropDownList 控件上使用 OnClick 事件的原因是什么?如果您要在 DropDownList 上实现 OnClick 服务器端事件,用户将永远无法选择任何列表项。这是因为为了触发服务器端 OnClick,需要回发。即,用户单击 DropDownList,将立即发生回发,并且他们将无法选择值。

这听起来像是尝试修复错误问题的情况,但是您可能可以尝试使用“onclick”JavaScript 属性并使用客户端脚本和 AJAX 处理您尝试执行的任何操作?

What reason do you have for wanting an OnClick event on the DropDownList control? If you were to implement an OnClick server-side event on the DropDownList the user would never be able to select any of the list items. This is because in order to fire a Server-Side OnClick, a postback would be required. I.e. the user would click the DropDownList, a postback would instantly occur and they wouldn't be able to select a value.

It sounds like a case of trying to fix the wrong problem, however you could probably try and use the "onclick" JavaScript attribute and handle whatever you're trying to do using client side script and AJAX?

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