为什么测试三种,把显示x位置的函数不管提前还是放后,都只显示1111
<script type="text/javascript">
//不同函数传递数据,为什么。把显示x位置的函数不管提前还是放后,都只显示1111
$(".aaron3").mousemove(function(e) {
$(this).find('p:last').html('数 据:' + e.pageX)
})
function data(e) {
$(this).find('p:last').html('数据:' + e.data)
}
function a() {
$(".right").mousemove(1111, data)
}
a();
</script>