我制作了一个正在运行的网页但是当我尝试将jscript带入外部文件时,它不再被调用。我已经在我的标题中放入代码以包含文件名但仍然无法调用它。这是我的jscript请帮帮我 顺便说一下,我从这里http://www.abeautifulsite.net/blog/2011/11/detecting-mobile-devices-with-javascript/
获得了isMobile功能<script>
var isMobile = {
Android: function() {
return navigator.userAgent.match(/Android/i);
},
BlackBerry: function() {
return navigator.userAgent.match(/BlackBerry/i);
},
iOS: function() {
return navigator.userAgent.match(/iPhone|iPad|iPod/i);
},
Opera: function() {
return navigator.userAgent.match(/Opera Mini/i);
},
Windows: function() {
return navigator.userAgent.match(/IEMobile/i);
},
any: function() {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
}
};
function load()
{
var w=((screen.availWidth)/50)*49;
var h=(w/4)*3;
if( isMobile.any() ){
var t=w;
w=h;
h=t;
}
var a=document.getElementById('banner');
a.style.width=w+'px';
a.style.height=(h/4)+'px';
var b=document.getElementById('main');
b.style.width=w+'px';
b.style.height=Math.round((h/7)*4)+'px';
}
</script>
答案 0 :(得分:0)
引用外部JavaScript文件时,其内容不应包含<script>
标记。主文件中的<script>
标记用于通知浏览器应将内容解析为JavaScript。从外部文件中删除周围的<script>
标记。
主文件中的正确引用:
<script type='text/javascript' src='path/to/external.js'></script>
language='JavaScript'
属性has been deprecated并且是不必要的。您可以加入type='text/javascript'
。
外部文件的内容应包含仅 JavaScript代码,而不是<script>
标记,如下所示:
// File external.js
alert('Look, no script tag!');