如果有id,如何自动更改href。 我有一个标签:
<a href="../Main/Profile.aspx" id="btnChangeProflie" class="main-User">Account</a>
当我的网站打开时会自动更改href="..Page/Main/Profile.aspx"
。我尝试了一些jquery,但没有改变。
谢谢!
答案 0 :(得分:1)
假设你想在锚元素有Page
时将id
添加到href。
$("a[id]").each(function( index, element ){
var newHref = "..Page" + $(this).attr("href").replace('..', '');
$(this).attr("href", newHref);
});
这将选择具有id
属性的所有锚元素
Fiddle