如何使用 Javascript 将搜索焦点设置在 Mozilla 页面的开头?

发布于 2024-10-20 10:48:04 字数 155 浏览 2 评论 0原文

我有一些使用本机 mozilla 浏览器的代码,它在文本上进行查找,但是这可以从用户上次单击的位置开始工作。我需要它从文档的顶部开始,但 API 没有任何合适的方法来执行此操作,因此我认为可以通过在页面上执行 javascript 来实现。有人知道该怎么做吗?基本上我想将插入符号位置设置为 0。

I have some code that uses a native mozilla browser and it does a find on the text, however this works from wherever the user last clicked. I need it to start from the top of the document but the API doesn't have any decent way of doing this so I was thinking it may be possible by executing javascript on the page. Anyone know how to do this? Basically I want to set the caret position to 0.

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

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

发布评论

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

评论(1

蓝海似她心 2024-10-27 10:48:04
window.getSelection().selectAllChildren(document.body);
window.getSelection().collapseToStart();
window.getSelection().selectAllChildren(document.body);
window.getSelection().collapseToStart();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文