动画的gif没有在IE中移动

时间:2016-04-14 14:22:37

标签: javascript animated-gif

此javascript中的动画gif(spinner.gif)未在Internet Explorer中移动。我尝试过使用版本8,9和10.它在Chrome中工作正常。

<script type="text/javascript">
    var h1 = Builder.node("h1", "Title");
    var h3 = Builder.node("h3", "Text");
    var node = Builder.node("div", {style: "border: 1px solid #0F0; text-align: center"});
    var img = Builder.node("img", {src: '../js/modalbox/spinner.gif'});
    node.appendChild(h1);
    node.appendChild(h3);
    node.appendChild(img);            
</script>

Builder来自http://madrobby.github.io/scriptaculous/builder/

node在我的jsp页面中添加了按下面的按钮。

<h:commandButton value="Button" actionListener="#{stuffBean.createStuff}" onclick="onSubmit();if (window.confirm('Text')) {body.style.cursor='wait';Modalbox.show(node, {title:'', overlayClose: false, width: 300}); return true;} else {return false;}"/>

如何让它在IE 8,9和10版本中移动?

0 个答案:

没有答案