仅当 IE 8 或更早版本时才使用 ScriptReference 和 ScriptManagerProxy 加载脚本?

发布于 2024-12-19 01:16:29 字数 424 浏览 0 评论 0原文

我使用 这种技术让 ScriptManager 和 ScriptManagerProxy 与 jquery 对话。但 ScriptReference 标签似乎没有办法处理这个问题:

<!--[if lte IE 8]>
<script language="javascript" 
type="text/javascript" 
src="../Scripts/excanvas.min.js"></script>
<![endif]-->

有没有办法使用 ScriptManager 来做到这一点,还是我需要自己动手? (目前,我只是使用脚本管理器来计算要放在脚本地址之前的正确数量的 ../.. 符号。)

I got the ScriptManager and ScriptManagerProxy to talk to jquery using this technique. But the ScriptReference tag doesn't seem to have a way to deal with this:

<!--[if lte IE 8]>
<script language="javascript" 
type="text/javascript" 
src="../Scripts/excanvas.min.js"></script>
<![endif]-->

Is there a way to use the ScriptManager to do that, or do I need to roll my own? (At the moment, I'm just using the script manager to calculate the right number of ../.. symbols to put before the address of the script.)

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

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

发布评论

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

评论(1

路弥 2024-12-26 01:16:29

不幸的是,客户端技术(例如所使用的条件注释)不能与服务器端技术混合。我相信使用 ScriptManager 执行此操作的唯一方法是以编程方式将脚本添加到页面(如果满足您的条件)。

如果您更关心执行脚本然后交付它,您可以执行以下操作:

<!--[if lte IE 8]> 
var isLteIe8 = true;
<![endif]--> 

然后,在脚本中,用 if(typeof(isLteIe8) !== 'undefined') {...} 包装它

Unfortunatly client-side techniques like the conditional comments used do not mix with server-side techniques. I believe the only way to do this with the ScriptManager would be to programatically add the scripts to the page if your condition is met.

If you are more concerned with executing the script then delivering it, you can do something like this:

<!--[if lte IE 8]> 
var isLteIe8 = true;
<![endif]--> 

And then, in your script, wrap it with a if(typeof(isLteIe8) !== 'undefined') {...}

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