16

嗨朋友们, 我正在做一个小任务,即让用户能够在输入按键时对 html 元素进行制表索引。

作为 jquery 的新手,我编写了一些代码,在我看来它可以工作,但其中存在一些问题。

初步发现
罪魁祸首代码,它不起作用,因为 Msg 标签中的输出是“未定义”

$('*').attr('tabindex').id

在此处输入图像描述

下面给出了代码,我什至创建了一个JSFiddle

jQuery

 $(document).ready(function (eOuter) {
    $('input').bind('keypress', function (eInner) {
        if (eInner.keyCode == 13) //if its a enter key
        {
            var tabindex = $(this).attr('tabindex');
            tabindex++; //increment tabindex
            //after increment of tabindex ,make the next element focus
            $('*').attr('tabindex', tabindex).focus();

                       **//Msg Label**
            //Just to print some msgs to see everything is working
            $('#Msg').text( this.id + " tabindex: " + tabindex 
               + " next element: " + $('*').attr('tabindex').id);

            return false; // to cancel out Onenter page postback in asp.net
        }
    });
}
);

HTML

<div>
    Employee Info<br />
    Name<br />
    <input name="TxtbxName" type="text" value="ok" id="TxtbxName" tabindex="1" />
    <br />
    Age<br />
    <input name="TxtbxAge" type="text" id="TxtbxAge" tabindex="2" />
    <br />
    Gender<br />
    <select name="DdlGender" id="DdlGender" tabindex="3">
      <option selected="selected" value="Male">Male</option>
      <option value="Female">Female</option>
    </select>
    <br />
    <div>
        Previous Employment<br />
        <select name="DdlCompany" id="DdlCompany" tabindex="4">
   <option selected="selected" value="0">Folio3</option>
   <option value="1">Null Soft</option>
   <option value="2">Object Soft</option>
   <option value="3">Excepption Soft</option>
    </select>
        &nbsp;&nbsp;or Enter Code&nbsp;&nbsp;
        <input name="TxtbxCompanyCode" type="text" id="TxtbxCompanyCode" tabindex="5" />
        <br />
        Address<br />
        <input name="TxtbxAddress" type="text" id="TxtbxAddress" tabindex="6" />
        <br />
       <input type="submit" name="BtnSubmit" value="Submit" id="BtnSubmit" tabindex="7"/>
        <br />
        <label id="Msg">Message here</label>
    </div>
</div>

让我知道我哪里出错了:/

4

6 回答 6

15

我发现了几个小的 jQuery 问题。固定在这里:JSFiddle

这一行:

$('*').attr('tabindex', tabindex).focus();

可以这样写:

$('[tabindex=' + tabindex + ']').focus();

还有这个:

$('#Msg').text($(this).id + " tabindex: " + tabindex 
           + " next element: " + $('*').attr('tabindex').id);

没有以 jQuery 方式调用 id 属性(您使用的是 JavaScript 语法,但 $(this) 的结果是一个 jQuery 对象。所以...$(this).id变成$(this).attr('id').

该表单仍然存在提交问题,我没有深入研究,但它现在改变了焦点并填写了“#Msg”元素。

于 2012-05-24T17:44:24.527 回答
9

这是我在没有jQuery的情况下使用JSFiddle 示例focusNextElementkeydown[Enter]上的完整工作代码,该示例基于以下stackoverflow答案创建:

  1. 如何防止按 ENTER 键提交 Web 表单?
  2. 聚焦标签索引中的下一个元素
<script type="text/javascript">

    function focusNextElement() {
      var focussableElements = 'a:not([disabled]), button:not([disabled]), input[type=text]:not([disabled]), [tabindex]:not([disabled]):not([tabindex="-1"])';
      if (document.activeElement && document.activeElement.form) {
        var focussable = Array.prototype.filter.call(document.activeElement.form.querySelectorAll(focussableElements),
          function(element) {
            return element.offsetWidth > 0 || element.offsetHeight > 0 || element === document.activeElement
          });
        var index = focussable.indexOf(document.activeElement);
        focussable[index + 1].focus();
      }
    }

    window.addEventListener('keydown', function(e) {
      if (e.keyIdentifier == 'U+000A' || e.keyIdentifier == 'Enter' || e.keyCode == 13) {
        if (e.target.nodeName === 'INPUT' && e.target.type !== 'textarea') {
          e.preventDefault();
          focusNextElement();
          return false;
        }
      }
    }, true);

</script>
于 2016-11-18T21:38:45.180 回答
4

不想发布新帖子并使用我认为有用的解决方案制作垃圾邮件。

从其他来源收集信息(Brian Glaz 代码nice-one)并 使用Enter键制作了跨浏览器版本的Focus Next Element In Tab-index

选项卡索引不是一个接一个,但也可以在 (1,2,9,11,30 等) 之间包含一个空格

var tabindex = 1; //start tabindex || 150 is last tabindex
    $(document).keypress(function(event) {
        var keycode = (event.keyCode ? event.keyCode : event.which);
        if(keycode == '13') { //onEnter
            tabindex++;
            //while element exist or it's readonly and tabindex not reached max do
            while(($("[TabIndex='"+tabindex+"']").length == 0 || $("[TabIndex='"+tabindex+"']:not([readonly])").length == 0) && tabindex != 150 ){
                tabindex++;
            }
            if(tabindex == 150){ tabindex = 1 } //reseting tabindex if finished
            $("[TabIndex='"+tabindex+"']").focus()
            return false;
        }
    });
    
    $("input").click(function() { //if changing field manualy with click - reset tabindex 
        var input = $(this);
        tabindex = input.attr("tabindex");
    })

我希望有人会觉得它有用。随意编辑/评论它。

于 2012-06-26T11:04:14.170 回答
3
var tab = $(this).attr("tabindex");
tab++;
$("[tabindex='"+tab+"']").focus();
于 2014-08-09T16:23:53.967 回答
1

为了解决这个问题,我生成了一个小的 jquery 函数来查找下一个有效的 tabindex;假设它更容易维护,并且可能比 while 循环快一点:

function getNextTabindex(currentTabIndex) {
  return $("[tabindex]").index($("[tabindex=" + currentTabIndex + "]")) + 1;
}

希望这对需要它的人有所帮助;这是经过测试并且有效的。

简而言之:寻找当前tabindex的元素,在所有tabindex元素的列表中找到这个元素,获取它的索引并增加索引。

然后,使用这个函数,你可以这样选择下一个 tabindex 元素:

$('[tabindex=' + getNextTabindex($(":focus").attr("tabindex")) + ']').focus();

我没有测试电话,但假设它可以工作。

于 2013-09-25T15:59:10.653 回答
0
var tabindex= $(this).attr("tabindex");
tabindex++;
$("[tabindex='"+tabindex+"']").focus();

表格中可编辑单元格的示例

    $(document).on('dblclick', 'td', function () {
        console.log('clicked');
        this.contentEditable = 'true';
    });
 $(document).on('keydown', 'td', function (event) {
        if (event.keyCode === 9 || event.keyCode === 13) {
            this.contentEditable = 'false';
            //  $(this).next().focus().dblclick().focus();
            var tabindex = $(this).attr('tabindex');
            tabindex++;
            var next = $('[tabindex=' + tabindex + ']').focus().dblclick();
            if (next.is('td') == false)
                return true;
            var sel, range;
            if (window.getSelection && document.createRange) {
                range = document.createRange();
                range.selectNodeContents(next[0]);
                range.collapse(true);
                sel = window.getSelection();
                sel.removeAllRanges();
                sel.addRange(range);
            } else if (document.body.createTextRange) {
                range = document.body.createTextRange();
                range.moveToElementText(next[0]);
                range.collapse(true);
                range.select();
            }

            return false;
        }
    });

动态表格中的可编辑单元格

于 2017-06-06T02:10:50.727 回答