js 获取输入框中光标的索引位置

复制代码
<html>
<head></head>

<body>
<script>
function getTxt1CursorPosition(){
    var oTxt1 = document.getElementById("txt1");
    var cursurPosition=-1;
    if(oTxt1.selectionStart){//非IE浏览器
        cursurPosition= oTxt1.selectionStart;
    }else{//IE
        var range = document.selection.createRange();
        range.moveStart("character",-oTxt1.value.length);
        cursurPosition=range.text.length;
    }
    alert(cursurPosition);
}
</script>
<input type="text" id="txt1" value="abcde" onclick="getTxt1CursorPosition()">


</body>


</html>
复制代码

 

posted @   漫步CODE人生  阅读(5036)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示