假设我有一个.on()
选择多个 id 的功能
$("#i, #am, #your, #father").on("click" , function(event){
//iterate over the selectors and return tagname
alert ( $("#i").prop("tagName") );
alert ( $("#am").prop("tagName") );
alert ( $("#your").prop("tagName") );
alert ( $("#father").prop("tagName") );
}
我能想到的唯一方法是分别提醒每个人。有没有一种已知的方法来处理$("#i, #am, #your, #father")
数组?