gpt4 book ai didi

javascript - 在其他文本中搜索文本并使用 javascript 突出显示它

转载 作者:行者123 更新时间:2023-11-29 17:33:27 24 4
gpt4 key购买 nike

在 html 静态页面中单击按钮时在文本框中找到给定的文本,然后使用 javascript 突出显示它

最佳答案

这是来自 Searching for Text In Page 的代码示例 。它本质上相当于在浏览器中使用 CTRL+F 执行 Find。如果您使用 jQuery库,您可以使用 Search-Highlight Plugin以类似于 Google 搜索的方式突出显示文本。

<html>
<head>
<script language="JavaScript">
<!--
var TRange=null;
function findString (str) {
if (parseInt(navigator.appVersion)<4) return;
var strFound;
if (window.find) {

// CODE FOR BROWSERS THAT SUPPORT window.find
strFound=self.find(str);
if (strFound && self.getSelection && !self.getSelection().anchorNode) {
strFound=self.find(str)
}
if (!strFound) {
strFound=self.find(str,0,1)
while (self.find(str,0,1)) continue
}
}
else if (navigator.appName.indexOf("Microsoft")!=-1) {

// EXPLORER-SPECIFIC CODE

if (TRange!=null) {
TRange.collapse(false)
strFound=TRange.findText(str)
if (strFound) TRange.select()
}
if (TRange==null || strFound==0) {
TRange=self.document.body.createTextRange()
strFound=TRange.findText(str)
if (strFound) TRange.select()
}
}
else if (navigator.appName=="Opera") {
alert ("Opera browsers not supported, sorry...")
return;
}
if (!strFound) alert ("String '"+str+"' not found!")
return;
}
//-->
</script>
</head>
<body>
<form name="f1" action=""
onSubmit="if(this.t1.value!=null && this.t1.value!='') findString(this.t1.value);return false">
<input type="text" name=t1 value="" size=20>
<input type="submit" name=b1 value="Find">
<p>This is some sample text.</p>
</form>
</body>
</html>

关于javascript - 在其他文本中搜索文本并使用 javascript 突出显示它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/857079/

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