标题非常不言自明。
$(".js").click(function (e) {
alert('this elements href is: ' + href);
});
如何用单击元素的 href 替换“href”?
标题非常不言自明。
$(".js").click(function (e) {
alert('this elements href is: ' + href);
});
如何用单击元素的 href 替换“href”?
像这样:
$(".js").click(function (e) {
alert('this elements href is: ' + $(this).attr('href'));
}
试试这个:
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