泰山日出天色略显昏暗,放眼望去,寂寥晨星下面是一片静止的山势般起伏的云海,在茫茫的夜色下,象极了远处同样黑魆魆的山峰。
本文实例讲述了JavaScript实现正则去除a标签并保留内容的方法。分享给大家供大家参考,具体如下:
一、问题:
有如下HTML代码,要求用正则去除a标签,只留下内容 //www.haodaima.com
<a rel="nofollow noopener noreferrer" href="//www.haodaima.com/" style="box-sizing: border-box; color: rgb(51, 51, 51); text-decoration: none; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1); -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1); max-width: 100%; transparent;"><span data-wiz-span="data-wiz-span" style="box-sizing: border-box; max-width: 100%; font-size: 14pt;">//www.haodaima.com</span></a>
二、解决方法:
这里使用可删除a
标签与span
标签的正则语句,如下:
(<\/?a.*?>)|(<\/?span.*?>)
具体js正则语句:
str.replace(/(<\/?a.*?>)|(<\/?span.*?>)/g, '');
完整测试代码如下:
<!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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>js正则删除a标签并保留内容</title> </head> <body> <a rel="nofollow noopener noreferrer" href="//www.haodaima.com/" style="box-sizing: border-box; color: rgb(51, 51, 51); text-decoration: none; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1); -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1); max-width: 100%; transparent;"><span data-wiz-span="data-wiz-span" style="box-sizing: border-box; max-width: 100%; font-size: 14pt;">//www.haodaima.com</span></a> <script> var str=document.getElementsByTagName('a')[0].outerHTML; console.log("正则删除之前:"+str); str=str.replace(/(<\/?a.*?>)|(<\/?span.*?>)/g, ''); console.log("正则删除之后:"+str); </script> </body> </html>
使用在线HTML/CSS/JavaScript代码运行工具:http://tools.haodaima.com/code/HtmlJsRun,测试结果如下:
PS:这里再为大家提供2款非常方便的正则表达式工具供大家参考使用:
JavaScript正则表达式在线测试工具:
http://tools.haodaima.com/regex/javascript
正则表达式在线生成工具:
http://tools.haodaima.com/regex/create_reg
希望本文所述对大家JavaScript程序设计有所帮助。
到此这篇关于JavaScript实现正则去除a标签并保留内容的方法【测试可用】就介绍到这了。那些背叛同伴的人,常常不知不觉地把自己也一起灭亡了。更多相关JavaScript实现正则去除a标签并保留内容的方法【测试可用】内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!