Rumah > Artikel > hujung hadapan web > 如何设置所有元字的前面都是某个样式_html/css_WEB-ITnose
1元
3元 986元
8765.86元
用js配合css或者纯css设置所有的元字的前面的文字都使用class="aa"
aa里面我设置好了,字体和颜色。
之前看到过类似的代码,现在要用了找不到了
str.replace(/[\d\.]+(?=元)/g,"$&")
都添加一个span或者b标签就行了啊
str.replace(/[\d\.]+(?=元)/g,"$&")
1元 3元 986元 8765.86元 |
str.replace(/[\d\.]+(?=元)/g,"$&")
1元 3元 986元 8765.86元 |
<style>.aa{color:red}</style><table id="tab"><tr><td>1元 3元 986元 8765.86元</td></tr></table><script>var str = document.getElementById("tab").outerHTML;str=str.replace(/[\d\.]+(?=元)/g,"<span class='aa'>$&</span>");alert(str);document.getElementById("tab").outerHTML=str;</script>