gpt4 book ai didi

javascript - 在 HTML 元素的文本中搜索

转载 作者:行者123 更新时间:2023-11-30 16:28:09 25 4
gpt4 key购买 nike

我想使用 C# (winforms) 中的 webBrowser 控件 API 或使用注入(inject)的 java 脚本在特定网页元素中搜索单词。

我使用了以下 java 脚本并将其注入(inject)到加载的网页中:

var TRange=null;

function findString (str) {

var strFound;

// EXPLORER-SPECIFIC CODE

if (TRange!=null) {
TRange.collapse(false);
strFound=TRange.findText(str);
if (strFound) TRange.select();
}
else if (TRange==null || strFound==0) {
TRange=self.document.body.createTextRange();
strFound=TRange.findText(str);
if (strFound) TRange.select();
}

if (!strFound) alert ("String '"+str+"' not found!")
return;
}

此代码适用于整个页面,但我想在特定元素的内部文本中进行搜索。如何将我的搜索限制为此类元素?

最佳答案

以下 java 脚本在第一次调用时使用了 moveToElementText(当 TRange 为 null 时)有效

var TRange=null;

function findString (str) {

var strFound;

// EXPLORER-SPECIFIC CODE

if (TRange!=null) {
TRange.collapse(false);
strFound=TRange.findText(str);
if (strFound) TRange.select();
}
else if (TRange==null || strFound==0) {
TRange=self.document.body.createTextRange();
var elem = document.getElementById('my_elem');
// go to the element text
TRange.moveToElementText(elem);
strFound=TRange.findText(str);
if (strFound) TRange.select();
}

if (!strFound) alert ("String '"+str+"' not found!")
return;
}

关于javascript - 在 HTML 元素的文本中搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33786856/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com