-- 将 keydown 事件添加到 HTMLUListElement
我有一个无序列表的项目。当它打印到控制台时,它显示为“HTMLUListElement”。我可以将jquery的keydown事件注册到页面的这个元素吗?现在看来是这样?如果我将该功能保留在那里,页面最终会崩溃(Chrome 说它没有响应)。
I have a unordered list of items. When it prints to the console, it shows up as a "HTMLUListElement". Can I register jquery's keydown event to this element of the page? Right now it's seems? to be working as if I keep that function in there, the page eventually will crash (Chrome says it's unresponsive).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 w3school 的页面
和 < a href="http://www.w3schools.com/tags/tag_li.asp" rel="nofollow noreferrer">
,keydown 事件应该适用于列表。但是,我没有在列表中使用此事件的个人经验。
According to w3school's pages for
<ul>
and<li>
, the keydown event should work for lists. However, I have no personal experience using this event in lists.