小编Tom*_*Tom的帖子

jQuery文本框光标到文本结尾?

我试图使用jQuery基本上替换用户点击"输入"后文本框中文本末尾的光标

我有"输入"部分工作 - 但我不知道[在输入部分之后] - 我可以让光标返回到文本框内输入文本的末尾?

即在此刻,当用户点击进入时 - 光标转到一个新行,我希望它基本上到达当前文本的末尾?

一些代码:

jQuery('#textbox').keyup(function (e) {
        if (e.keyCode == 13) {
            ... submits textbox
        }
        jQuery(this).focus(function() {
          var val = this.input.value; //store the value of the element
          this.input.value = ''; //clear the value of the element
          this.input.value = val; //set that value back.  
        )};    
});
Run Code Online (Sandbox Code Playgroud)

jquery textbox focus

8
推荐指数
1
解决办法
8877
查看次数

标签 统计

focus ×1

jquery ×1

textbox ×1