Head.js 在 if/endif 场景中的应用
我想在使用 head.js 的部分下添加当前的以下行。
<!--[if lt IE 9]>
<script type="text/javascript" src='@Url.Script("AdminScripts/html5.js")'></script>
<script type="text/javascript" src='@Url.Script("AdminScripts/PIE.js")'></script>
<script type="text/javascript" src='@Url.Script("AdminScripts/IE9.js")'></script>
<script type="text/javascript" src='@Url.Script("AdminScripts/ie.js")'></script>
<![endif]-->
谁能指导我如何做到这一点?这是我如何添加其他内容的示例。
head.js("@Url.Script("jquery-1.4.4.min.js")", function(){
head.js("@Url.Script("jquery.tools.min.js")");
});
但是,当我尝试添加 if/end if 代码行时,它不断给我错误。任何帮助将不胜感激。
谢谢
I would like to add the following lines that I currently have under the section using head.js.
<!--[if lt IE 9]>
<script type="text/javascript" src='@Url.Script("AdminScripts/html5.js")'></script>
<script type="text/javascript" src='@Url.Script("AdminScripts/PIE.js")'></script>
<script type="text/javascript" src='@Url.Script("AdminScripts/IE9.js")'></script>
<script type="text/javascript" src='@Url.Script("AdminScripts/ie.js")'></script>
<![endif]-->
Can anyone guide me how to do this? Here is an example of how I am adding other stuff.
head.js("@Url.Script("jquery-1.4.4.min.js")", function(){
head.js("@Url.Script("jquery.tools.min.js")");
});
However, when I try to add the if/end if lines of code, it keeps on giving me errors. Any help would be highly appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在此文档
在您的情况下,可能的脚本可以遵循:
you can find all needed information to config your script for some version of IE browser in this documentation
In your case possible script cand be follow: