标题非常自我解释。
$(".js").click(function (e) {
alert('this elements href is: ' + href);
});
如何用点击元素的href替换'href'?
答案 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