首页 > 编程 > Regex > 正文

正则表达式替换字符串功能

2020-03-16 21:19:52
字体:
来源:转载
供稿:网友
<a href="1.htm">251</a> 
怎么用JS把251替换为 
<span style='background-color: #99FF99'>251</span>

  1. <script type="text/javascript">  
  2. var str='<a href="1.htm">231</a>';  
  3. alert(str.replace(/<a([/s/S]*)>([/s/S]*)<//a>/ig,"<a$1><span style='background-color: #99FF99'>$2</span></a>"));  
  4. </script> 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表