控制textarea光标移到末尾

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;
    }

原文地址:https://www.cnblogs.com/gaoxue/p/2982665.html