开发者

How do I change the "href" of <a> through Javascript Jquery?

开发者 https://www.devze.com 2022-12-11 19:00 出处:网络
Suppose I have this: <a id=\"main_link\" href=\"http://feedproxy.google.com/~r/AmazonWir开发者_StackOverflow中文版e/~5/FN5UZlXKwdY/SalmanRushdiePodcast.mp3\">

Suppose I have this:

<a id="main_link" href="http://feedproxy.google.com/~r/AmazonWir开发者_StackOverflow中文版e/~5/FN5UZlXKwdY/SalmanRushdiePodcast.mp3">

How do I use Jquery to change the "href" to something else?


Get a reference to your link, and use the attr method on it:

$('#main_link').attr('href', 'something_else');

That grabs the elements with id="main_link" using the id "#" css selector (should only be one in the document), and sets the href attribute of all (again, should only be one in the document).

jQuery can perform the exact same operation on batch to a class of elements:

$('.main_link').attr('href', 'something_else');

That grabs the elements with css class="main_link" instead.


$("#main_link").attr("href","http://...");

http://docs.jquery.com/Attributes/attr


$('#main_link').attr('href','your new href');
0

精彩评论

暂无评论...
验证码 换一张
取 消