如果我指定几个不同的选择器来获得相同的结果,有什么方法可以获得所选择的选择器的字符串?
$('#one, #two, #three').on( "click", function(){
console.log(???);
//#one
});
例如,如果有人点击元素#one
,如何将#one
打印到控制台?
答案 0 :(得分:5)
答案 1 :(得分:2)
试试这个:您将在Event
对象中获得当前this
值。
$('#one, #two, #three').on( "click", function(Event){
console.log("#" + this.id);
//OR
console.log("#" + Event.target.id);
//#one
});