3

标题非常不言自明。

$(".js").click(function (e) {
        alert('this elements href is: ' + href);
    });

如何用单击元素的 href 替换“href”?

4

2 回答 2

6

像这样:

$(".js").click(function (e) {
    alert('this elements href is: ' + $(this).attr('href'));
}
于 2012-07-18T07:04:23.307 回答
3

试试这个:

alert('this elements href is: ' + this.href);//best one

或者

alert('this elements href is: ' + $(this).attr("href"));//but it is unnecessary to wrap an object into another object
于 2012-07-18T07:05:59.980 回答