<script type="text/javascript">
//不同函数传递数据,把显示x位置的代码提前
$(".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>
相关分类