dojo.fx.easing.elasticOut ?
为什么下面的代码不起作用? http://jsbin.com/ayugiq/edit#javascript,html,live
我试图从这个例子中“提取”最简单的函数,以使用 dojo 实现 elasticOut 效果: http://dojotoolkit.org/reference-guide/dojo/fx/easing.html (示例位于底部)
抱歉,我并不懒惰,但此代码不起作用,我找不到任何错误。
why does the following code not work?
http://jsbin.com/ayugiq/edit#javascript,html,live
Im trying to "extract" the plainest function for an elasticOut effect with dojo from this example:
http://dojotoolkit.org/reference-guide/dojo/fx/easing.html
(example is at the bottom)
Sorry im not lazy but this code does not work and I cant find any errors.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将要连接的事件从:
dojo.connect(dijit.byId("moveButton"), "onClick", moveIt);
更改为
dojo.connect(dojo. byId("moveButton"), "onclick", moveIt);
'onClick' 事件仅适用于实际的 dijit 小部件,而 'onclick' 事件适用于本机 html 元素,例如
<按钮>
。另外,dijit.byId() 应该只用于检索实际的小部件,而 dojo.byId 检索纯 html DOM 节点,例如您正在使用的button
。you need to change the event you are connecting to from this:
dojo.connect(dijit.byId("moveButton"), "onClick", moveIt);
to
dojo.connect(dojo.byId("moveButton"), "onclick", moveIt);
the 'onClick' event only applies to actual dijit widgets, whereas the 'onclick' event applies to native html elements such as
<button>
. Also, dijit.byId() should only be used to retrieve actual widgets, wheras dojo.byId retrieves plain html DOM Nodes such as thebutton
you are using.