<div id=\"divGOButton\" class=\"divNewGOButton\"onclick=\"Adventure.BeginGo();\"></div>
<div id=\"dvDiceBG\"></div>
<div id=\"divDiceShort\" class=\"DiceShortBG\">
<div id=\"divGODice\"></div>
</div>
BeginGo:function()
{
if($("divGODice"))
{
Adventure.Status=1;
$("divGODice").style.cssText="background:url("+CDNUrl+"/Images/Adventure/ShakeDice.gif) no-repeat;position:absolute;top:0px;left:0px;width:59px;height:59px;z-index:2;";
}
},
------解决方案--------------------
可以,是不是你关闭了ie6的在网页中播放动画的功能了
在internet属性-》高级,多媒体那块,自己检查下
------解决方案--------------------
我试了可以,可能是你的js写的有问题
BeginGo:function()
{
if($("#divGODice"))
{
Adventure.Status=1;
$("#divGODice").style.background="url("+CDNUrl+"/Images/Adventure/ShakeDice.gif) no-repeat;position:absolute;top:0px;left:0px;width:59px;height:59px;z-index:2;";
}
},
你这样试一下
------解决方案--------------------
正常来说,这种肯定是可以用的。在ie6上,可能是你的安全设置了。