我正在尝试仅使用 html、css 和 javascript 创建一个搜索框,它将在我的页面中搜索文本,如果找到匹配的文本,该函数应该突出显示范围内的文本。
我在网上搜索(和stackoverflow),但找不到与我的需求相关的答案)
我知道该怎么做,但我被困在某个点上。这是我的代码到目前为止的样子。
<script type="text/javascript">
function init(){
//creates a variable equal to the value entered in the text box
var lookfor = document.getElementById("q").value
//splits the whole page into an array or words
var words = document.body.innerHTML.split(" ");
///loops through the array to get each word
for( var i=0; i<words.length; i++){
}
//This is where I get lost, i dont know how to make it so that what you enter
//in the textbox(lookfor) matches somthing on the page. it will get highlighted. i
//was thinking about using the find object, but im new to javascript and dont know
//how to properly use find yet.
if(lookfor == words[i]) //Find()------
{
'<span class="highlight">' + words + '</span>'
}
else{
alert("Sorry, your search returned no results! Please Try again.")
}
}