文章分类 Classification
javascript实现网页内容查找功能
稿件来源: 阳光企业网站管理系统 撰稿作者: 太阳光 发表日期: 2013-08-26 阅读次数: 1059 查看权限: 游客查看
javascript实现网页内容查找功能
<script language="JavaScript"> var n = 0; function findInPage() { var str=document.getElementById("searchstr").value; if (str==""){ alert("请输入关键词"); return false; } var txt, i, found; if (document.all){ // IE txt = window.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(); }else{ alert("未找到指定内容"); } } }else if(document.layers){ if (!window.find(str)) while(window.find(str, false, true)) n++; else n++; if (n == 0)alert("未找到指定内容."); }else{ //ff chrome window.find(str, false, true); return true; } return false; } </script>
关键词: javascript,网页查找,findtext 编辑时间: 2013-08-26 22:54:27
0
高兴1
支持0
搞笑1
不解0
谎言0
枪稿0
震惊0
无奈0
无聊0
反对0
愤怒
100%(5)
0%(0)
- 【匿名】为何没有调用代码 这个还得匹配呀 同志 [2015-08-28 10:57:15]
文章图片 article Pictrue
网友评论