我有一个文本字段,其中包含默认值。我想使用jquery来关注这个字段,但使用focus()
将光标放在已经输入的文本之前。如何在输入的文本后聚焦光标?
答案 0 :(得分:1)
您可以像这样设置插入位置:http://jsfiddle.net/tSChT/。
var textbox = $("#textbox");
textbox.prop("selectionStart", textbox.val().length) // set caret to length (end)
.focus();