使用jquery添加到链接的href值

时间:2011-12-18 22:09:05

标签: jquery hyperlink href add

如何使用jquery在下面的链接值中添加一些地址?比如http://maps.google.com/maps?q=indianapolis

<div class="driving-directions-link">
<a href="http://maps.google.com/maps?q=">Get Direction</a>
</div>

2 个答案:

答案 0 :(得分:5)

$("div.driving-directions-link > a").prop("href", function (index, oldHref) {
    return oldHref + "indianapolis";
});

结帐.prop,其中oldHref可以使用href,旧版{{1}}。

示例: http://jsfiddle.net/c5VNK/

答案 1 :(得分:0)

如果您愿意,可以更改整个网址: $('a[href="http://maps.google.com/maps?q="]').attr('href', 'http://maps.google.com/maps?q=indianapolis');

示例http://jsfiddle.net/mGVQw/