博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js页内查找
阅读量:6517 次
发布时间:2019-06-24

本文共 965 字,大约阅读时间需要 3 分钟。

hot3.png

来自于12306:http://www.12306.cn/mormhweb/zxdt/tlxw_tdbtz53.html
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;}

转载于:https://my.oschina.net/shixiaobao17145/blog/99920

你可能感兴趣的文章
解读userenv的日志
查看>>
ext3与ext4区别
查看>>
UNIX/Linux 系统管理技术手册阅读(三)
查看>>
btrfs的使用(案例讲解)
查看>>
安装配置samba服务器和客户端
查看>>
filebeat 配置文件详解
查看>>
Swift与OC混编
查看>>
CentOS 5 (64位)下lnmp平台搭建
查看>>
redhat 6.5 配置WAS控制台中文
查看>>
记录一次处理https监听不正确的过程
查看>>
SCOM 2012 SP1服务器上安装和配置Veeam MP for VMware
查看>>
多核编程的四层境界
查看>>
Windows Phone 实用开发技巧(11):让StackPanel中的控件靠右对齐
查看>>
小记如何修改xen模块
查看>>
实时游戏对战引擎Photon
查看>>
C语言位操作控件属性
查看>>
nginx的安装及基本配置,及多个域名服务
查看>>
Servlet访问postgresql数据库并提取数据显示在前端jsp页面
查看>>
不改一行代码定位线上性能问题
查看>>
定义运算符
查看>>