如何只返回我们点击的对象,而不是整个集合?
$('[id^=opener]').click(function() {
document.write($('[id^=opener]').find(this));
});
答案 0 :(得分:4)
只需使用$(this)
:
$('[id^=opener]').click(function() {
console.log($(this)); // this refers the target you clicked.
});
答案 1 :(得分:4)
使用:
$('[id^=opener]').click(function() {
console.log(this);
event.stopPropagation();
});
OR
$('[id^=opener]').click(function(event) {
console.log(event.target);
event.stopPropagation();
});