搜索 HTML 和 ScrollTo

发布于 2024-10-03 18:22:24 字数 96 浏览 2 评论 0原文

所以我有一个包含 2000 多个条目的文档列表。我想添加某种形式的搜索功能。显然,我有一个输入栏,但是我该如何编写搜索页面和 ScrollTo 到该位置的 javascript?

So I've got a list a document with 2000 plus entries. I want to add some form of search functionality. I have an input bar, obviously, but how would I go about writing the javascript that searches the page and the ScrollTo's to that location?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

疏忽 2024-10-10 18:22:24

您可以使用 window.findrange.findText

<input id="search" >
<input type="button" value="search" onclick="fx(document.getElementById('search'))">
<script type="text/javascript">
<!--
function fx(o)
{ 
  var _o=o;
  if(window.find)
  { 
    _o.style.visibility='hidden';
    setTimeout(function(){window.find(_o.value);_o.style.visibility='visible';},10);
  }
  else if(document.body.createTextRange)
  {
    var rng=document.body.createTextRange();
        rng.findText(o.value);
        rng.select();
  }
}
//-->
</script>

You can use window.find and range.findText

<input id="search" >
<input type="button" value="search" onclick="fx(document.getElementById('search'))">
<script type="text/javascript">
<!--
function fx(o)
{ 
  var _o=o;
  if(window.find)
  { 
    _o.style.visibility='hidden';
    setTimeout(function(){window.find(_o.value);_o.style.visibility='visible';},10);
  }
  else if(document.body.createTextRange)
  {
    var rng=document.body.createTextRange();
        rng.findText(o.value);
        rng.select();
  }
}
//-->
</script>
哀由 2024-10-10 18:22:24

循环遍历您要搜索的元素。递归地遍历子节点并使用正则表达式搜索每个子节点,可能类似于 /\bTERM\b/

当您找到一个时,找到其偏移位置,然后 scrollTo() 该偏移量。

Loop through elements you want to search. Step recursively through child nodes and search each one with a regex, probably something like /\bTERM\b/.

When you find one, locate its offset position, and then scrollTo() that offset.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文