从 C# ASP.NET 代码隐藏调用 javascript 函数

发布于 2025-01-07 06:52:26 字数 206 浏览 0 评论 0原文

我想从代码隐藏文件中调用 javascript 函数 - 但不是在用户单击某些内容之后调用。当条件为真时,将发生调用。

有没有一种简单的方法可以做到这一点?

编辑:

我现在已经用查询字符串值“修复”了它,并将 ClientScript.IsStartupScriptRegistered 放入 Page_Load...但我希望可以有一种更简洁的方法。

I want to call a javascript function from the code-behind file - but not after the user clicked something. The call will take place when a condition is true.

Is there a simple way to do this?

Edit:

I have now "fixed" it with querystring values, and putting ClientScript.IsStartupScriptRegistered in Page_Load...but I wish there could be a neater way.

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

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

发布评论

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

评论(3

童话里做英雄 2025-01-14 06:52:26

由于您希望在服务器上发生更改时执行 js 代码,因此您需要首先考虑如何从客户端(js)代码监视服务器上的更改。

  • 大概:
    • 您需要在客户端运行 JavaScript 计时器 (window.setTimeout(...)),
    • 使用ajax调用获取服务器端状态(例如jQuery.get(...));
    • 然后您需要检查状态是否是您所期望的并且
    • 然后执行代码。

Since you want to execute js code when something changes on the server, then you need to first think how you are going to monitor changes on the server from the client (js) code.

  • Probably:
    • you will need to have javascript timer (window.setTimeout(...)) running on the client side,
    • which fetches the server side state using ajax call (jQuery.get(...) for example);
    • then you need to check if the state is what you are expecting and
    • then execute the code.
↙温凉少女 2025-01-14 06:52:26

更简洁的方式!

在 .aspx 中 标记底部附近:

<asp:Literal ID="Literal1" runat="server"/>

在 .cs 中

Literal1.Text = "<script>YourJSFunction();</script>";

neater way!

In .aspx near the bottom of the </form> tag:

<asp:Literal ID="Literal1" runat="server"/>

In .cs

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