this ,e.target.什么时候用?为什么?详解 谢过
function word(e){
alert("hi"+e.data.name)
}
$("#test1").on("click",{name:"nihao"},word);
问题1:e.data.name 不是表示自己吗?能不能写e.target.name?
问题二: mousedown:function(e){
$(this).text("shijian"+e.type)
这里能不能写成这样mouseup:function(e){
e.target.text("s"+e.type)
}
})