博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

光标操作

Posted on 2011-03-10 14:13  Adam哥  阅读(213)  评论(0编辑  收藏  举报

var txb = document.getElementById(inputId);
    txb.focus();
    var t = txb.createTextRange();
    t.moveStart('character', inputVal.length);
    t.collapse(true);
    t.select();

counter