如何有条件地包含外部 javascript 文件? [英] How to include an external javascript file conditionally?

查看:32
本文介绍了如何有条件地包含外部 javascript 文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I have this code:

<script src="http://external/js/file/url.js">
</script>

I want to do something like this-

<script>
if(2>1){
//include http://external/js/file/url.js
}
</script>

Any idea?

解决方案

This question has been asked before in Include a Javascript File in another Javascript File. This peice of code may fit what you have been looking for

function include(filename)
{
   var head = document.getElementsByTagName('head')[0];

   var script = document.createElement('script');
   script.src = filename;
   script.type = 'text/javascript';

   head.appendChild(script)
}   

if that script does not work, i suggest you to look over and read the post above: Include a Javascript File in another Javascript File.

I hope this helps, it may not be the answer you had been looking for, but it may just help.

这篇关于如何有条件地包含外部 javascript 文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆