注入<脚本>标记到中在代码后面

发布于 2024-12-02 15:17:42 字数 253 浏览 2 评论 0原文

我需要找到一种全局方法,将

基本上,我需要一种方法在引用任何其他脚本(在 HEAD 中)“之前”将 jQuery 推送到我的所有页面中。

I need to find a global way to inject a <script> tag into my pages directly within the <head> tag from the code behind. Is there something I can do in the global.asax? If not, all my aspx pages inherit a class I have "BasePage" that implements System.Web.UI.Page.

Basically, I need a way to push jQuery into all of my pages "before" any other scripts (in the HEAD) are referenced.

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

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

发布评论

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

评论(2

我的痛♀有谁懂 2024-12-09 15:17:42
protected void Application_EndRequest(object sender, EventArgs e)
{
    if (result)
    {
        Page page = HttpContext.Current.CurrentHandler as Page;
        if (page is Page)
        {
            page.ClientScriptManager.RegisterClientScriptBlock(this.GetType(), "HeadScript",
            "<script>alert('error')</script>");
        }
    }
}

也许像上面这样的东西适合你。 Application_EndRequestGlobal.asax 中定义。

protected void Application_EndRequest(object sender, EventArgs e)
{
    if (result)
    {
        Page page = HttpContext.Current.CurrentHandler as Page;
        if (page is Page)
        {
            page.ClientScriptManager.RegisterClientScriptBlock(this.GetType(), "HeadScript",
            "<script>alert('error')</script>");
        }
    }
}

Maybe something such as above works for you. Application_EndRequest is defined in Global.asax.

扛起拖把扫天下 2024-12-09 15:17:42

看看这个。它也可以修改为添加到母版页中。

http://msdn.microsoft.com/en-us/library/z9h4dk8y.aspx

Check this out. It can be adapted to add to a master page too.

http://msdn.microsoft.com/en-us/library/z9h4dk8y.aspx

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