keynav jquery 插件不工作
我无法在(任何)网页上移动荧光笔 div,其移动只能借助 4 个箭头键(和第五个键(键代码为 13))我不知道第五个键是什么及其目的。我正在使用 keynav 插件来达到目的,并使用一些额外的代码来将荧光笔插入其中,但一切都是徒劳的
i am unable to move a highlighter div on a(any) web page whose locomotion is enabled only with the helpof the 4 arrow keys (and the fifth key(with key code of 13)) I dont know anything about what is the fifth key and its purpose. I am using the keynav plugin for the purpose and some extra code for inserting the highlighter into it but all in vain
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在使用 jquery.keynav 插件,那么即使使用最新的 jQuery (v1.6.1)。在计算中,ASCII 是一种字符编码方案,
13
是↵(Enter)键的编号(请参阅ASCII 控制字符)。
jQuery 插件专为箭头键 ↑ ↓ ← → 移动选择框< /em> 周围和 ↵ 键来触发
.click()< /code>
事件。
这是使用该插件的演示。您需要将插件代码保存为jquery.keynav .js 并将该文件放在与演示代码相同的目录中。
感谢插件作者,我从那里“借用”了演示:-)
If it is the jquery.keynav plugin that you are using, then it works just fine, even with the latest jQuery (v1.6.1). In computing, the ASCII is a character encoding scheme and
13
isthe number of the ↵ (Enter) key (see ASCII Control characters).
The jQuery plugin is designed for the arrow keys ↑ ↓ ← → to move the selection box around and the ↵ key to fire the
.click()
event.Here is a demo that uses the plugin. You will need to save the plugin code as jquery.keynav.js and put that file in the same directory as the demo code.
Credit to the plugin author, where I "borrowed" the demo from :-)