在表格中的可切换字段之间进行选项卡

时间:2010-10-08 13:08:24

标签: jquery jeditable

我正在使用此处的代码http://www.korvus.com/blog/geek/making-the-tab-key-work-with-jeditable-fields/来获取可编辑字段之间的标签,如果字段是自己的,则可以正常工作。但是我需要将我的字段放在一个表格中,并且tab键工作的唯一时间是从最后一个字段到第一个字段的标签,当然我需要它从第一个到下一个标签,依此类推......

$('div.edit').bind('keydown', function(evt) {
if(evt.keyCode==9) {
    $(this).find("input").blur();
    var nextBox='';

     if ($("div.edit").index(this) == ($("div.edit").length-1)) {
           nextBox=$("div.edit:first");         //last box, go to first
       } else {
            nextBox=$(this).next("div.edit");    //Next box in line
       }
    $(nextBox).click();  //Go to assigned next box
    return false;           //Suppress normal tab
};
});

表的格式如下

<table>

<tr>
  <td class='leftcolumn'>
     <strong>Firstname:</strong>
  </td>
  <td>
     <div class='edit' id='firstname'><?=$userdetail['firstname']?></div>
  </td>
</tr>

<tr>
  <td class='leftcolumn'>
     <strong>Lastname:</strong>
  </td>
  <td>
     <div class='edit' id='lastname'><?=$userdetail['lastname']?></div>
  </td>
</tr>
</table>

提前致谢

1 个答案:

答案 0 :(得分:8)

我认为问题在于你的输入字段不是彼此的直接兄弟,因此“next()”失败了。我认为这会奏效:

$('div.edit').bind('keydown', function(evt) {
if(evt.keyCode==9) {
    var nextBox='';
    var currentBoxIndex=$("div.edit").index(this);
     if (currentBoxIndex == ($("div.edit").length-1)) {
           nextBox=$("div.edit:first");         //last box, go to first
       } else {
            nextBox=$("div.edit").eq(currentBoxIndex+1);    //Next box in line
       }
    $(this).find("input").blur();
    $(nextBox).click();  //Go to assigned next box
    return false;           //Suppress normal tab
};
});