我需要能够检测目标字符串是否是链接。如果是,我需要获取URL并将其放入var中,使用字符串a(通过插件运行以截断)执行某些操作,然后再将新字符串包装到链接中。我想我应该能够用jQuery完成这个,对吧?
<div class="item">some string</div>
<div class="item">another string</div>
<div class="item"><a href="myUrl.php">linked string</a></div>
答案 0 :(得分:3)
我想你想要这样的东西:
$('.item > a').each(function(){
var url = this.href;
//do your stuff
});
答案 1 :(得分:0)
我认为这应该对你有用,它会在课程中找到所有链接
$(".item a").each(function(index){
var url = $(this).attr("href");
url = url+"hello";
$(this).attr("href", url);
});