对某某事件的function(e)
这个概念有时候明白点,有时候模糊像之前的
$('.target3').keypress(function(e) {
$("em:eq(2)").text(e.target.value)
});
现在的
$("#test3").on({
mousedown: function(e) {
$(this).text('触发事件:' + e.type)
},
mouseup: function(e) {
$(this).text('触发事件:' + e.type)
}
})
这些e是当作事件的对象来用的吗