JQuery使用单击元素的href侦听单击和警报

时间:2012-07-18 07:03:01

标签: javascript jquery

标题非常自我解释。

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

如何用点击元素的href替换'href'?

2 个答案:

答案 0 :(得分:6)

像这样:

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

答案 1 :(得分: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