测试三date(e)函数是什么执行的
<h4>测试三</h4>
<div class="right">
<div class="aaron3">
<p>鼠标移动:不同函数传递数据</p>
<p>数据:</p>
</div>
</div>
<script type="text/javascript">
//不同函数传递数据
function data(e) {
$(this).find('p:last').html('数据:' + e.data)
}
function a() {
$(".right").mousemove(1111, data)
}
a();
如题,只是执行了a(),为什么date(e)会执行