Head.js 在 if/endif 场景中的应用

发布于 2024-10-18 03:05:49 字数 715 浏览 0 评论 0原文

我想在使用 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 技术交流群。

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

发布评论

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

评论(1

度的依靠╰つ 2024-10-25 03:05:49

您可以在此文档

在您的情况下,可能的脚本可以遵循:

if (head.browser.ie && head.browser.version < 9) {
    /* code specific to IE but only if IE version is less than 9 */
}

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:

if (head.browser.ie && head.browser.version < 9) {
    /* code specific to IE but only if IE version is less than 9 */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文