怎么让搜索出来的关键字变红色?


result= replace(result,search,"<font color=red>"&search&"</font>")




'用正则表达式突出显示字符串中查询到的单词的函数
Function BoldWord(strContent,word)
if IsNull(strContent) then exit function
dim objRegExp
Set objRegExp=new RegExp
       objRegExp.IgnoreCase =true
       objRegExp.Global=True

       objRegExp.Pattern="(" & word & ")"
       strContent=objRegExp.Replace(strContent,"<span style=""color:#ff0000"">$1</span>" )

Set objRegExp=Nothing
       BoldWord=strContent
End Function


http://bbs.blueidea.com/thread-1110552-1-1.html

[本日志由 cmscn 于 2008-09-05 10:46 AM 编辑]
文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags:
相关日志:
评论: 0 | 引用: 0 | 查看次数: 394
发表评论
昵 称:
密 码: 游客发言不需要密码.
内 容:
验证码: 验证码
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
字数限制 20 字 | UBB代码 关闭 | [img]标签 关闭