HTML 页面查找关键词,显示高亮,代码怎么写?谢谢!!!!!!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML 页面查找关键词,显示高亮,代码怎么写?谢谢!!!!!!相关的知识,希望对你有一定的参考价值。
页面内查找人名,搜索框内输入人名,点击search,高亮显示搜索人的名字,谢谢!!!!!!
<body><div id="main">
<div id="container" ><div id="content"><br>
<form name="form1">
<input name="Input" type="text" onfocus="javascript:this.value=''">
<input name="Submit" type="submit" value="search">
</form><table width="72%" cellspacing="2" cellpadding="2" border="0">
<tbody>
<tr>
<td colspan="1" width="226" height="15"align="left" class="STYLE6" >Name</td>
<td width="188" height="15"align="left"class="STYLE6" >type</td>
<td width="185" height="15"align="left"class="STYLE6" >Slot</td>
<td width="180" height="15"align="left"class="STYLE6" >time</td>
</tr>
<td colspan="1" width="226" height="15"align="left" class="STYLE6" ></td>
<td width="188" height="15"align="left"class="STYLE6" ></td>
<td width="185" height="15"align="left"class="STYLE6" ></td>
</tr>
<tr>
<td colspan="1" height="15"align="left" class="STYLE6" >Alejandro Aceves
</td>
<td width="188" height="15"align="left"class="STYLE6" >CP62</td>
<td width="185" height="15"align="left"class="STYLE6" >H3-306</td>
<td width="180" height="15"align="left"class="STYLE6" >11:00 Wed</td>
</tr> <tr>
<td colspan="1" height="15"align="left" class="STYLE6" >Afkhami Shahriar
</td>
<td width="188" height="15"align="left"class="STYLE6" >MS277</td>
<td width="185" height="15"align="left"class="STYLE6" >H3-307</td>
<td width="180" height="15"align="left"class="STYLE6" >11:00 Wed</td>
</tr> <tr>
<td colspan="1" height="15"align="left" class="STYLE6" >Aillc</td>
<td width="188" height="15"align="left"class="STYLE6" >MS277</td>
<td width="185" height="15"align="left"class="STYLE6" >H3-308</td>
<td width="180" height="15"align="left"class="STYLE6" >11:00 Wed</td>
</tr> <tr>
<td colspan="1" height="15"align="left" class="STYLE6" >Ashilksdfjs</td>
<td width="188" height="15"align="left"class="STYLE6" >MS277</td>
<td width="185" height="15"align="left"class="STYLE6" >H3-306</td>
<td width="180" height="15"align="left"class="STYLE6" >11:00 Wed</td>
</tr> </tbody>
</table></div></div> </body>
<!--#include file="conn.asp"-->
<!------------------------------------
Asp站内搜索的关键字上色!
------------------------------------->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>设计自己的搜索网站</title>
<style type="text/css">
<!--
body,td,th
font-size: 12px;
-->
</style>
<script type="text/javascript">
function Checktext()
if (document.from.text.value.length == 0 )
alert("搜索关键字不能为空!");
document.from.text.focus();
return false;
return true;
</script>
</head>
<body>
<form action="?act=search" name="from" method="post" onClick="return Checktext();">
<input name="text" type="text" id="text" />
<input type="submit" name="Submit" value="搜索" />
</form>
</body>
</html>
<%
function FontToColor(Str)
'定义一个字符转换的过程
if not isnull(str) then
str = replace(str,request("text"),"<font color=red>"&request("text")&"</font>")
'转换str中符合request("text")的字符为 <font color=red>字符</font>
FontToColor = str
end if
end function
if request("act")="search" then
set rs=server.CreateObject("adodb.recordset")
rs.open"select * from list where text like '%"&request("text")&"%' order by time desc",conn,1,1
if rs.eof and rs.bof then
response.write"没有记录!"
response.end
else
do while not rs.eof
response.write"<table width='600' border='0' cellspacing='0' cellpadding='0'><br><tr width='600'><td>"
response.write FontToColor(rs("text"))
'查找rs("text")中包含的request("text")字符,并替换
response.write"</td></tr>"
rs.movenext
loop
rs.close
set rs=nothing
end if
end if
%>追问
ASP兄,非常谢谢你,我用的是静态网页做的,请问:
这段应该放在哪里呀?
请问您有代码吗,我刚学,看不太懂啊。。。。。。。
求教一下notepad++怎么设置高亮
求教一下notepad++怎么设置高亮,我的那个现实的是下划线。求教啦.
参考技术A notepad++的背景色设置,关键字颜色设置http://bbs.fishc.com/thread-31611-1-1.html朋友看看这个帖子 参考技术B 高亮是不是关键字显示颜色的?是这样高的话你可以到工具栏找到语言(L)下拉菜单中的A,Assembly以上是关于HTML 页面查找关键词,显示高亮,代码怎么写?谢谢!!!!!!的主要内容,如果未能解决你的问题,请参考以下文章