用javascript模拟左右方向键事件
我正在使用 Slide.html5rocks.com 框架,并且尝试在标签链接内使用 img 标签,但无法使用 JavaScript onclick 来模拟左右键事件来更改幻灯片
I'm using the slide.html5rocks.com framework and I'm trying to use to img tags inside of a tag links and I can't get the JavaScript onclick to simulate the left and right key events to change slides
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找能够调度事件的东西。这是应该有用的东西:
我用它做了一个很酷的小界面测试,您可能会感兴趣。它的外观如下: http://jsfiddle.net/FvCut/6/
经测试可在 Firefox 中运行3.6、Opera 11、Safari 5、IE 8 和 IE 7/IE Quirks 模式。值得注意的是:当您像大多数浏览器一样按住某个键时,Opera 11 不会触发重复的“keydown”事件。
You're looking for something that will dispatch an event. Here's something that should work:
I made a cool little interface test with it that will probably interest you. Here's how it looks: http://jsfiddle.net/FvCut/6/
Tested as working in Firefox 3.6, Opera 11, Safari 5, IE 8, and IE 7/IE Quirks Mode. Of note: Opera 11 doesn't fire repeated "keydown" events when you hold a key down like most browsers.
您如何模拟该事件? document.dispatchEvent 不适用于所有浏览器。
您可以使用以下方法测试该功能:
typeOf(document.dispatchEvent) != 'undefined'
How are you simulating the event? document.dispatchEvent doesn't work in all browsers.
You can test the feature using this:
typeOf(document.dispatchEvent) != 'undefined'