gpt4 book ai didi

javascript - 转到单词突出显示的位置

转载 作者:行者123 更新时间:2023-11-29 02:18:35 24 4
gpt4 key购买 nike

当我通过 UIWebview 在 html 文件中搜索时,我的应用程序会注册突出显示的单词。我遇到的问题是该程序只是突出显示选定的单词。由于我有几个页面,如何使程序自动转到突出显示单词的位置,而不是我四处滚动,搜索突出显示的单词。到目前为止,这是我的代码。谢谢

function uiWebview_HighlightAllOccurencesOfStringForElement(element,keyword) {

if (element) {
if (element.nodeType == 3) { // Text node
while (true) {
//if (counter < 1) {
var value = element.nodeValue; // Search for keyword in text node
var idx = value.toLowerCase().indexOf(keyword);

if (idx < 0) break; // not found, abort

//(value.split);

//we create a SPAN element for every parts of matched keywords
var span = document.createElement("span");
var text = document.createTextNode(value.substr(idx,keyword.length));
span.appendChild(text);

span.setAttribute("class","uiWebviewHighlight");
span.style.backgroundColor="yellow";
span.style.color="black";

uiWebview_SearchResultCount++; // update the counter

text = document.createTextNode(value.substr(idx+keyword.length));
element.deleteData(idx, value.length - idx);
var next = element.nextSibling;
element.parentNode.insertBefore(span, next);
element.parentNode.insertBefore(text, next);
element = text;

}
} else if (element.nodeType == 1) { // Element node
if (element.style.display != "none" && element.nodeName.toLowerCase() != 'select') {
for (var i=element.childNodes.length-1; i>=0; i--) {
uiWebview_HighlightAllOccurencesOfStringForElement(element.childNodes[i],keyword);
}
}
}
}
}

最佳答案

//我将该代码用于下一个和上一个功能并且它工作正常 //函数

uiWebview_HighlightAllOccurencesOfNextStringForElement(元素,关键字){

    if (element) {
if (element.nodeType == 3) { // Text node
while (true) {
//if (counter < 1) {
var value = element.nodeValue; // Search for keyword in text node
var idx = value.toLowerCase().indexOf(keyword);

if (idx < 0) break; // not found, abort

var span = document.createElement("span");
var text = document.createTextNode(value.substr(idx,keyword.length));
span.appendChild(text);
span.setAttribute("class","MyAppHighlight");
text = document.createTextNode(value.substr(idx+keyword.length));
element.deleteData(idx,value.length-idx);
var next = element.nextSibling;
element.parentNode.insertBefore(span,next);
element.parentNode.insertBefore(text,next);
element = text;
span.scrollIntoView();
span.style.backgroundColor = "yellow";

span.style.color = "black";
a.push(span);

uiWebview_SearchResultCount++;



}
} else if (element.nodeType == 1) { // Element node
if (element.style.display != "none" && element.nodeName.toLowerCase() != 'select') {
for (var i=element.childNodes.length-1; i>=0; i--) {
uiWebview_HighlightAllOccurencesOfNextStringForElement(element.childNodes[i],keyword);
}
}
}
}
}

// the main entry point to start the search
function uiWebview_HighlightAllOccurencesOfNextString(keyword)
`enter code here`{
uiWebview_RemoveAllHighlights();
uiWebview_HighlightAllOccurencesOfNextStringForElement(document.body, keyword.toLowerCase());

}

//并且比在您的 ViewContrlller 中的“下一个”和“上一个”按钮方法上调用此函数

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
{
[self highlightAllOccurencesOfNextString:searchbar.text];
}

- (NSInteger)highlightAllOccurencesOfNextString:(NSString*)str
{
NSString *filePath = [[NSBundle mainBundle]pathForResource:@"UIWebViewSearch" ofType:@"js"];
NSData *fileData = [NSData dataWithContentsOfFile:filePath];
NSString *jsString = [[NSMutableString alloc] initWithData:fileData encoding:NSUTF8StringEncoding];
[htmlWebView stringByEvaluatingJavaScriptFromString:jsString];

NSString *startSearch = [NSString stringWithFormat:@"uiWebview_HighlightAllOccurencesOfNextString('%@')",str];
[htmlWebView stringByEvaluatingJavaScriptFromString:startSearch];
NSString *result = [htmlWebView stringByEvaluatingJavaScriptFromString:@"a.length"];
currentPosition = [result intValue] - 1;
return [result integerValue];

}

-(void)nextMethod
{
currentPosition -= 1;
NSString *nextScrollPosition = [NSString stringWithFormat:@"a[%d].scrollIntoView()", currentPosition];
[htmlWebView stringByEvaluatingJavaScriptFromString:nextScrollPosition];
}

-(void)previousMethod
{
currentPosition += 1;
NSString *previousScrollPosition = [NSString stringWithFormat:@"a[%d].scrollIntoView()", currentPosition];
[htmlWebView stringByEvaluatingJavaScriptFromString:previousScrollPosition];
}

关于javascript - 转到单词突出显示的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28438309/

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