新微赢技术网

标题: 很菜的问题 [打印本页]

作者: 为你执著    时间: 2010-1-16 02:21
标题: 很菜的问题
各位前辈:
我做了个搜索文章的功能,想要输入的关键字在标题中能够很显眼,试图想要将标题中的这几个字颜色变一下,但是我怎么也搞不出来.请各位前辈帮忙
作者: 绿茶    时间: 2010-1-16 02:21
输入搜索关键字时要用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>
作者: 皇家㊣贺v    时间: 2010-1-16 02:21
我是想文章题目中和关键字相符的词组变颜色
作者: 陪你疯→想你    时间: 2010-1-16 02:21
使用替换吧。
把那几个字在前后加上你要替换的色彩的语句加上,然后替换原来的字。

使用<FONT color=#ff0000>替换</font>吧。
就是用<FONT color=#ff0000>替换</font>
替换"替换"二字.
作者: 下雨的云    时间: 2010-1-16 02:22
Replace("字符串","要被替代的字","替代后的字")
用这个函数就OK了

response.write (Replace("文章字段","搜索关键字","<font color='red'>搜索关键字</font>"))
作者: 随处风流    时间: 2010-1-16 02:22
5楼的方法不错!!




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2