按Enter键的行为类似于JavaScript中的Tab

时间:2013-08-02 14:54:31

标签: jquery focus

我发现了以下内容:

$('body').on('keydown', 'input, select, textarea', function(e) {
    var self = $(this)
    , form = self.parents('form:eq(0)')
    , focusable
    , next
    ;
    if (e.keyCode == 13) {
        focusable = form.find('input,a,select,button,textarea').filter(':visible');
        next = focusable.eq(focusable.index(this)+1);
        if (next.length) {
            next.focus();
        } else {
            form.submit();
        }
        return false;
    }
});

但是如何使下一个值突出显示(表现得像TAB)/

1 个答案:

答案 0 :(得分:0)

添加

next.select();

.select()选择输入框的内容。你无法找到更多关于.select()here

的信息

这是DEMO