zoukankan      html  css  js  c++  java
  • 【js】document.selection.createRange().text

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <textarea>请输入内容hellip;</textarea>
        <input type="button" value="插入str" onClick="test('str');" />
        <p>string.substring(from, to)<br />string.slice(start, end)<br />这两个方法差不多,都是指定开始和结束位置返回新字符串,在参数均为正整数的时候返回结果一样,当参数为负整数的时候,string.substring(from, to)把负整数都当作0处理,而string.slice(start, end)将把负整数加上该字符串的长度处理<br />string.substr(start, length)<br />这个方法只在第二个参数上指定的是新字符串的长度,对于负正数和string.slice(start, end)处理一样,把负整数加上原字符串的长度</p>
        <script>
        function test(str){
            var el = document.getElementsByTagName('textarea')[0];
            var len = el.value.length;
            el.focus();
            //只ie认document.selection
            if (!document.selection) {
                //不会替换选中文本,光标处插入,插入后光标定位到了文本末
                alert(el.selectionStart);
                el.value = el.value.substr(0, el.selectionStart) + str + el.value.substring(el.selectionStart, len);
                alert(el.selectionStart);
            }
            else {
                //替换选中文本,光标处插入,插入后光标停留在了原位置
                document.selection.createRange().text = str;
            }
        }
        </script>
    </body>
    </html>
  • 相关阅读:
    POJ
    Parallel Computing–Cannon算法 (MPI 实现)
    POJ
    POJ 2240
    IOS
    iOS
    js遍历map匹配数据和js遍历数组匹配map数据
    vue v-on:click传递动态参数
    vue 权限控制按钮3种样式、内容、以及跳转事件
    vue v-show与v-for同时配合v-bind使用并在href中传递多个参数的使用方法
  • 原文地址:https://www.cnblogs.com/jzm17173/p/2511530.html
Copyright © 2011-2022 走看看