jquery无法启动IE浏览器加载

因此,一切加载启动铬和Firefox的好,但在IE浏览器它不起作用,我必须点击链接去到另一个页面和然后返回以便脚本开始工作。jquery无法启动IE浏览器加载

的jQuery:

$(document).ready(function(){ 

$('.bigimage').mouseover(function(){

$(this).stop().animate({

"width": "110%",

"left": "0px",

"top": "0px"

}, 200,'swing');

}).mouseout(function(){

$(this).stop().animate({

"width": "100%",

"left":"15px",

"top":"15px"

}, 200,'swing');

});

});

HTML

<ul class="getbig"> 

<li>

<a href="*"><img class="bigimage" src="pic.png" title="mytitle"></a>

</li>

<li>

<a href="*"> <img class="bigimage" src="pic2.png" title="mytitle2"></a>

</li>

</ul>

CSS:

.getbig{ position:relative; left: 50px; top: 0px; width:200px; height:78px; } 

.bigimage{ position:relative; width:100%; left:15px; top:15px}

所以我想知道是否有在IE DOCTYPE做。

回答:

这是否与IE唠叨有关不让 脚本运行,除非你按下接受按钮?

是的 - 它是否工作,如果你'允许阻止的内容'?

如果是的话,有两种解决方案:

  • 通过Web服务器,而不是作为一个本地文件加载页面

  • (IE运行脚本只对本地文件限制页)使用Mark of the Web(MOTW)。但是,这是一个非标准的解决方法,并介绍了其他问题(IE会再disable any links to other file types)

以上是 jquery无法启动IE浏览器加载 的全部内容, 来源链接: utcz.com/qa/259994.html

回到顶部