event.x和envent.y用jq的click()方法不能用,为什么?
$('#testid').click(function (event) {
console.log("x : y --> "+ event.x +":"+event.y);
});
输出为undefined, 为什么? 而原生的onclick方法就可以
$('#testid').click(function (event) {
console.log("x : y --> "+ event.x +":"+event.y);
});
输出为undefined, 为什么? 而原生的onclick方法就可以
2016-12-13
举报