将鼠标焦点定位到文本框最后(代码分享)

网友投稿 223 2023-06-19


将鼠标焦点定位到文本框最后(代码分享)

经测试,兼容IE8

//设置焦点相关---begin

//用法:$("#txtInput").val("你好").focusEnd();

$.fn.setCursorPosition = function (position) {

if (this.lengh == 0) return this;

return $(this).setSelection(position, position);

}

$.fn.setSelection = function (selectionStart, selectionEnd) {

if (this.lengh == 0) return this;

input = this[0];

if (input.createTextRange) {

var range = input.createTextRange();

range.collapse(true);

range.moveEnd('character', selectionEnd);

range.moveStart('character', selectionStart);

range.select();

} else if (input.setSelectionRange) {

input.focus();

input.setSelectionRange(selectionStart, selectionEnd);

}

return this;

}

$.fn.focusEnd = function () {

if (this.val() != undefined) {

this.setCursorPosition(this.val().length);

}

}

//设置焦点相关---end


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java int与integer的对比区别
下一篇:详解Java如何获取文件编码格式
相关文章

 发表评论

暂时没有评论,来抢沙发吧~