gpt4 book ai didi

javascript - body 标签 : then add class to all elements containing the matches 中的正则表达式匹配

转载 作者:行者123 更新时间:2023-11-30 12:35:27 25 4
gpt4 key购买 nike

这是我的 body :

<div>http://www.example.com</div>
<span>http://www.mywebsite.com</span><br>
<b>http://www.domain.com</b>

这是我的简单正则表达式(有效):

document.body.innerHTML.match(/(http|https|ftp):\/\/(?:www\.)?([a-z]|\d|-)+\.(?:([a-z]|-)+\.)*?(com|net|org)(?:\/)?/ig);


如何向包含 javascript 或 jquery 中的匹配项的所有元素添加一个类?示例:

<div class="matchClass">http://www.example.com</div>
<span class="matchClass">http://www.mywebsite.com</span><br>
<b class="matchClass">http://www.domain.com</b>


DEMO

最佳答案

你在找类似的东西吗

$('body').children()
.filter(function () {
return this.innerHTML.match(/(http|https|ftp):\/\/(?:www\.)?([a-z]|\d|-)+\.(?:([a-z]|-)+\.)*?(com|net|org)(?:\/)?/ig);
}).addClass('matchClass');

JSFiddle

关于javascript - body 标签 : then add class to all elements containing the matches 中的正则表达式匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26211636/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com