甚至用id改变href

时间:2015-01-03 11:07:43

标签: jquery href

如果有id,如何自动更改href。 我有一个标签:

<a href="../Main/Profile.aspx" id="btnChangeProflie" class="main-User">Account</a>

当我的网站打开时会自动更改href="..Page/Main/Profile.aspx"。我尝试了一些jquery,但没有改变。 谢谢!

1 个答案:

答案 0 :(得分:1)

假设你想在锚元素有Page时将id添加到href。

$("a[id]").each(function( index, element ){
  var newHref = "..Page" + $(this).attr("href").replace('..', ''); 
  $(this).attr("href", newHref);
});

这将选择具有id属性的所有锚元素 Fiddle