JQ中的问题 $(function(){ $(document).bind("click", function (e) { $(e.target).closest("p").css("colo
发布网友
发布时间:2022-05-21 08:09
我来回答
共2个回答
热心网友
时间:2023-10-20 05:04
e.target就是事件源,比如点击<input type='button' value='确定' />,那么这个事件源就是这个button。
$(e.target)这里的意思是传入事件源,获得button这个对象,相当于document.getElementById()这类方法。
热心网友
时间:2023-10-20 05:05
没有必要这么做吧 JQ都封装好了,直接用$(this)