Maison > Article > interface Web > Surligner des caractères à l'aide d'expressions régulières
这次给大家带来的是用正则表达式让字符高亮显示,把数字改换成正则表达式的中文或者指定的字符,既可以高亮。还可以设置其他的高亮颜色,这篇文章就给大家好好分析一下。
红色:style='background:red;'
蓝色:style='background:blue;'
绿色:style='background:green;'
<span id="span_id">span2314的23文本213</span> var htmlobj = txt.replace(/(\d+)/img, "<span style='background:red;'>$&</span>"); //var htmlobj = txt.replace(/([+\-]?[0-9]+(\.[0-9]+)?)/g, "<span style='background:red;'>$1</span>"); // 这个也可以 //var htmlobj = txt.replace(/(\d+)/img, "<span style='background:yellow;'>$1</span>");//这个也可以 alert("替换spna中的数字:"+htmlobj); $("#span_id").html(htmlobj);
相信看了以上介绍你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
相关阅读:
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!