通过回发呈现或更新后,运行 Javascript 来调整 ASP.NET 控件的大小

发布于 2024-11-16 20:30:57 字数 108 浏览 5 评论 0 原文

我有一个在 aspx 页面中加载的 ascx 控件。 我如何指示我的 ascx 在浏览器中渲染后运行 javascript。 它也应该在每次回发时运行。

我环顾四周,却找不到满意的答案。

I have an ascx control that is loaded in an aspx page.
How can I instruct my ascx to run javascript once it is rendered in the browser.
It should run on every postback as well.

I looked around but could not find a satisfactory answer.

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

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

发布评论

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

评论(1

零時差 2024-11-23 20:30:57

您是否尝试过使用“RegisterStartupScript”方法和 JQuery 来调用 JS 函数?
这段代码可能对您有帮助:

ScriptManager.RegisterStartupScript(Page, GetType(Page), "myScript", "$(function() {{ alert ('Your page is loaded.'); }});", True)

您可以用任何您想要的 JS 函数替换警报:)

我希望这会有所帮助。

Have you tried using the "RegisterStartupScript" method along with JQuery to call a JS function?
This code might help you:

ScriptManager.RegisterStartupScript(Page, GetType(Page), "myScript", "$(function() {{ alert ('Your page is loaded.'); }});", True)

You can replace the alert with any JS function you want :)

I hope this helps.

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