绅先生
2018-12-04 13:40
<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)会执行
知道了,原来的是回调函数
jQuery基础(三)—事件篇
89997 学习 · 625 问题
相似问题