当前位置:编程学习 > 网站相关 >>

去除html 链接正则表达式

很多时间特别是在采集时我们想把采集过来的html中的 a标签全部去了,我们就想到了用正则表达式的方法把链接一次性清除了。

去除html内容连接方法一

dTextArea.value.replace(/<[s]*a[s]+[^>]*>/,'').replace(/<[s]*/[s]*a[s]*>/,'');

方法二


dTextArea.value.replace(/<a[s]+[^>]*>/,'').replace(/</[s]*a[s]*>/,'');

方法三

<a(.+?)>|</a>

 

补充:网页制作,设计基础
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,