过去几天我一直在教Dojo。
但是,如果您查看以下页面:
http://www.mechanic-one.suburban-glory.com/
你会看到标题中的简单脚本在IE中不起作用
我收到以下消息:
消息:'duration'为null或不是对象 行:8 查尔:622 代码:0 URI:http://ajax.googleapis.com/ajax/libs/dojo/1.3.2/dojo/fx.xd.js
为什么会这样?
答案 0 :(得分:4)
您的源代码中有一个额外的逗号。它在Firefox中有效,但在IE中无效。
在下面的代码后删除逗号,它应该可以正常工作。
dojo.fadeIn({
node : link,
duration: 300,
easing: easingFunction
}),