focus on next tabindex of HTML element onEnter keypress by JQuery

后端 未结 6 1663
日久生厌
日久生厌 2020-12-05 11:06

Hi Friends, I\'m working on a small task which is to enable the user to tabindex the html element upon enter keypress.

As im new to jquery , I have

6条回答
  •  南方客
    南方客 (楼主)
    2020-12-05 11:48

    var tab = $(this).attr("tabindex");
    tab++;
    $("[tabindex='"+tab+"']").focus();
    

提交回复
热议问题