注入<脚本>标记到中在代码后面脚本>
我需要找到一种全局方法,将 标记直接从后面的代码的
标记内注入到我的页面中。我可以在 global.asax 中做些什么吗?如果没有,我的所有 aspx 页面都会继承一个类,我有一个实现 System.Web.UI.Page 的“BasePage”。
基本上,我需要一种方法在引用任何其他脚本(在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许像上面这样的东西适合你。
Application_EndRequest
在Global.asax
中定义。Maybe something such as above works for you.
Application_EndRequest
is defined inGlobal.asax
.看看这个。它也可以修改为添加到母版页中。
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