jquery – 如何用每个替换元素的attr href? // strip url

前端之家收集整理的这篇文章主要介绍了jquery – 如何用每个替换元素的attr href? // strip url前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图用每种方法改变href,

here is demo,inspect a,you’ll see there is no change

HTML:

<a href="#/news">News</a>
<a href="#/news/detail">Detail</a>
<a href="#/sport">Sport</a>
<a href="#/sport/football">Football</a>​​​​​​​​​​​​

jQuery的:

$('a').each(function() {
  $(this).attr('href').replace('#/',''); //tried to erase #/ from all hrefs
});​

解决方法

您发布的代码获取值作为字符串然后正确替换值但它会立即丢弃结果.您需要将替换值传递给attr.请尝试以下方法
$('a').each(function() {
  var value = $(this).attr('href');
  $(this).attr('href',value.replace('#/',''));
});​
原文链接:https://www.f2er.com/jquery/179060.html

猜你在找的jQuery相关文章