带有 JEditable 字段的 Tab 键
我有一个使用 JQuery 和 Jeditable 在页面上创建可编辑文本元素的页面。
在编辑元素时,我希望能够从一个元素切换到下一个元素。
我不确定如何:
使用 jeditable 或 jquery 捕获 tab 键事件 (keycode = 9)
一旦该事件检测到该事件后,将焦点移动到下一个元素并通过 jeditable 激活它
任何帮助赞赏。 谢谢!
I have a page using JQuery and Jeditable to create editable text elements on the page.
While editing an element, I would like to be able to tab from one element to the next.
I am unsure of how to:
Use jeditable or jquery to capture the tab key event (keycode = 9)
Once that event is detected, move focus to the next element and activate it via jeditable
Any help appreciated. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我设法找到了一种方法来做到这一点:
在选项卡上,双击(此处设置 jeditable 以使用 dblclick 事件)被发送到下一个框。 如果它是最后一个编辑框(分配了一个唯一的类,我在选择器方面遇到了问题),它将转到第一个编辑框。
我还使用了 find("input"),因为我无法找到另一个选择 jeditable 创建的输入进行模糊处理的选择器。
不是最佳的,但它有效。
I managed to find a way to do it:
On a tab, a double click (jeditable is set here to use the dblclick event) is sent to the next box. If it's the last edit box (assigned a unique class, I was having problems with selectors), it goes to the first.
I also used find("input") as I was unable to find another selector that picked the jeditable-created input for blurring.
Not optimal, but it works.
请检查这个
它会帮助你
do check this
it will help you
一种解决方案是让可编辑元素的容器进行监听,甚至可能是文档。 然后,查询文档或容器中的可编辑元素、确定哪个是当前编辑最多的元素并移至列表中的下一个元素是一项简单的任务。
One solution would be to make the container for the editable elements do the listening, or perhaps even the document. Then its an easy task of querying the document or container for editable elements, determining which is the most currently edited, and moving to the next element in the list.
只是一个小小的补充 - 如果您的 jeditable 字段嵌套在其他元素中,则 'nextBox=$(this).next("div.editbox");' 不会起作用,所以创建一个“目标”元素的数组并从内部开始工作......
Just a slight addition - if your jeditable fields are nested within other elements, the 'nextBox=$(this).next("div.editbox");' will not work, so create an array of the 'targeted' elements and work from within...