假设它在a.html中。
如何使用jQuery将url更改为b.html?
答案 0 :(得分:7)
我假设您想使用jQuery更改href
元素的目标(<a>
)?
$("a#your_id").attr("href", "b.html"); // where `a#your_id` is your selector
或者,您想要更改浏览器中的当前位置(将某人重定向到另一个页面)?
window.location = "b.html"; // No jQuery required for this!
答案 1 :(得分:1)
如果您的问题是如何将现有的href = a.html更改为href = b.html,那么这应该有效..
$('a[href=a.html]').attr('href', 'b.html');
答案 2 :(得分:0)
如果您想为自己的代码指定b.html,则需要使用&#39; src&#39;属性。
$('a#your_id').attr('src', 'b.html');