• js实现ctrl+F查找(转)


    小记一下,js实现ctrl+F查找功能:

    <script type="text/javascript">       

            var DOM = (document.getElementById) ? 1 : 0;

            var NS4 = (document.layers) ? 1 : 0;

            var IE4 = 0; if (document.all) { IE4 = 1; DOM = 0; }
            var win = window;

            var n = 0;
            function findIt() {

                if (document.getElementById("searchstr").value != "")

                    findInPage(document.getElementById("searchstr").value);

            }

            function findInPage(str) {

                var txt, i, found;
                if (str == "")

                    return false;
                if (DOM) {

                    win.find(str, false, true);

                    return true;

                }
                if (NS4) {

                    if (!win.find(str))

                        while (win.find(str, false, true))

                            n++;

                    else

                        n++;
                    if (n == 0)

                        alert("未找到指定内容.");

                }
                if (IE4) {

                    txt = win.document.body.createTextRange();
                    for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) {

                        txt.moveStart("character", 1);

                        txt.moveEnd("textedit");

                    }
                    if (found) {

                        txt.moveStart("character", -1);

                        txt.findText(str);

                        txt.select();

                        txt.scrollIntoView();

                        n++;

                    } else {

                        if (n > 0) {

                            n = 0;

                            findInPage(str);

                        } else

                            alert("未找到指定内容.");
                    }
                }
                return false;
            }    
        </script>

      <input type="text" class="edit_seachrTxt" id="searchstr" name="searchstr" />
         <label class="lableBtn"><input type="button" class="edit_seachrBtn" value="查找并选择" onclick="javascript:findIt()" /></label>

  • 相关阅读:
    Pytorch-基于Transformer的情感分类
    Pytorch-LSTM+Attention文本分类
    .NET ------ 批量修改
    idea ---- idea中关联GitHub
    .NET ----- 将文本框改成下划线,将下拉框改为下拉下划线
    表设计(省市县)
    锁:并发编程中的三个问题(可见性、原子性、有序性)
    freemarker:常用指令、null值的处理、基本数据类型、自定义指令
    vue:绑定属性指令(绑定属性、绑定class(对象语法、数组语法))
    vue:指令(插值操作、指令(v-once、v-html、v-text、v-pre、v-cloak))
  • 原文地址:https://www.cnblogs.com/aaronguo/p/2549254.html
Copyright © 2020-2023  润新知