各位前辈:
我做了个搜索文章的功能,想要输入的关键字在标题中能够很显眼,试图想要将标题中的这几个字颜色变一下,但是我怎么也搞不出来.请各位前辈帮忙
输入搜索关键字时要用css样式
<style type="text/css">
<!--
.bk {
color: #FF0000;
}
-->
</style>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<table width="500" border="1" align="center">
<tr>
<td width="150" height="50" align="center">搜索</td>
<td><input name="sousuo" type="text" class="bk" id="sousuo" />
<input type="submit" name="Submit" value="提交" /></td>
</tr>
</table>
</form>
</body>
</html>
输出关键字的时候也要用到css样式
<style type="text/css">
<!--
.wz {
font-size: 14px;
color: #FF0000;
}
-->
</style>
</head>
<body>
<table width="400" height="30" border="0" align="center" cellpadding="0" cellspacing="0" class="wz">
<tr>
<td width="202" align="center">搜索结果</td>
<td width="198" align="center"><%=rs("sousuo")%></td>
</tr>
</table>
</body>
</html>