Maison > Article > interface Web > 能否实现对特定字符设置样式?_html/css_WEB-ITnose
如题,想要针对页面中的特定字符设置样式,比如“@”或者“#”等,请教能否实现?如何实现?
不行,只有替换
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title> new document </title><style type="text/css">#hh span {color:#ff0000;}</style></head><body><div id="hh">#24567 #6576775 </div><script type="text/javascript">document.getElementById("hh").innerHTML = document.getElementById("hh").innerHTML.replace(/(#)/g,"<span>$1</span>")</script></body></html>
加上span:
@
#
在对类xx设置样式。
应该是不能实现这个功能,只能替换实现了。
谢啦。结贴