zoukankan      html  css  js  c++  java
  • 【表单】三

    <!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(start, end)<br />string.slice(start, end)<br />这两个方法差不多,都是指定开始和结束位置返回新字符串,在参数均为正整数的时候返回结果一样,当参数为负整数的时候,string.substring(start, end)把负整数都当作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>
  • 相关阅读:
    Web Storage
    You don't know js
    vue—你必须知道的
    js数据类型
    Python基础 — Matplotlib
    Python基础 — Pandas
    MySQL基础 — 常用命令
    MySQL基础 — 详细安装
    Python机器学习算法 — 支持向量机(SVM)
    Python机器学习算法 — 逻辑回归(Logistic Regression)
  • 原文地址:https://www.cnblogs.com/jzm17173/p/2598010.html
Copyright © 2011-2022 走看看