程序员人生 网站导航

利用js在文本框末尾获得焦点

栏目:互联网时间:2014-09-16 10:30:38
function moveEnd(obj) { obj.focus(); var len = obj.value.length; if (document.selection) { var sel = obj.createTextRange(); sel.moveStart('character', len); sel.collapse(); sel.select();搜索 } else if (typeof obj.selectionStart == 'number' && typeof obj.selectionEnd == 'number') { obj.selectionStart = obj.selectionEnd = len; } }
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐