请问下原文的which和target分别的用法和意义。。
$("button:eq(0)").mousedown(function(e) {
alert('e.which: ' + e.which)
})
$('p').mousedown(function(e) {
alert(e.target.textContent)
})
//this指向button元素
$("button:eq(1)").mousedown(function() {
$('p').mousedown() //指定触发绑定的事件
})
which是event事件的一个标志属性,一般用来区分鼠标左键右键,target是事件产生的对象,上文中target指p元素节点对象。
event.target代表的是触发事件的dom对象,是静态不变的。
.this是事件冒泡,动态变化。先触发内部事件,由内到外的执行。
两者都代表dom对象,如果需要调用jquery的方法可以这样$(this),$(event.target)。