在我的代码隐藏中创建新的 CheckBox 时,如何连接客户端 Javascript 函数调用?

发布于 2024-11-28 04:25:58 字数 245 浏览 1 评论 0原文

在我的 ASP.NET 页面的代码后面,我正在动态创建一个复选框:

CheckBox cb = new CheckBox();

但我希望新的复选框调用客户端函数而不是回发。我希望能够做这样的事情:

cb.OnClientClick = "Javascript:MyClientFunction();";

但这不存在。我如何像这样即时连接它?

In my ASP.NET page's code behind I'm creating a checkbox on the fly:

CheckBox cb = new CheckBox();

But I want the new checkbox to call a client function instead of posting back. I would expect to be able to do something like this:

cb.OnClientClick = "Javascript:MyClientFunction();";

But that doesn't exist. How do I wire it up on the fly like that?

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

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

发布评论

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

评论(2

差↓一点笑了 2024-12-05 04:25:58

这将起作用:

cb.Attributes.Add("onclick", "Javascript:MyClientFunction();");

This will work:

cb.Attributes.Add("onclick", "Javascript:MyClientFunction();");
尘曦 2024-12-05 04:25:58

在后面的代码中,您可以使用 Attributes.Add("onclick", "Javascript:MyClientFunction();")

On code behind you can use Attributes.Add("onclick", "Javascript:MyClientFunction();")

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