新闻详情

让光标停在文字的最后

3167 2009/5/19
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>标题页</title>
    <script language="javascript">
    function last()
    {
        var e = event.srcElement;
        var r =e.createTextRange();
        r.moveStart("character",e.value.length);
        r.collapse(true);
        r.select();
    }
    </script>
</head>
<body>
<textarea rows=6 cols=30 onFocus="last()">
这是一个测试;
这是一个测试;
这是测试;
</textarea>
</body>
</html>

相关资讯

18973218026
返回顶部