问答详情
源自:2-3 jQuery鼠标事件之mousemove事件

测试三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)会执行


提问者:绅先生 2018-12-04 13:40

个回答

  • 绅先生
    2018-12-04 13:49:30

    知道了,原来的是回调函数