我想在脚本标记中加载2个外部JS脚本,有没有办法用一个document.write标记加载2个脚本,还是必须声明两次?似乎找不到任何答案。
document.write('<script src="js/scroll.js"><\/script>');
document.write('<script src="js/mobile.js"><\/script>');
答案 0 :(得分:1)
document.write('<script src="js/scroll.js"><\/script><script src="js/mobile.js"><\/script>');
答案 1 :(得分:1)
以这种方式检查:
//JS CODE:
function include(path)
{
var e;
e = window.document.createElement('script');
e.setAttribute('src',path);
window.document.body.appendChild(e);
}
include("js/scroll.js");
include("js/mobile.js");
答案 2 :(得分:1)
你能使用jQuery吗?
jQuery("document").ready(function() {
if(navigator.platform == 'iPad' || navigator.platform == 'iPhone' || navigator.platform == 'iPod'){
document.write('<script src="js/scroll.js"><\/script><script src="js/mobile.js"><\/script>');
}
});