问答详情
源自:2-2 jQuery鼠标事件之mousedown与mouseup事件

是啥意思啊

<script type="text/javascript">

    //this指向button元素

    $("button:eq(0)").  $("button:eq(0)").mousedown(function(e) {

        alert('e.which: ' + e.which)

    })(function(e) {

        alert('e.which: ' + e.which)

    })

    </script>

啥意思

提问者:慕少3363232 2018-03-05 18:35

个回答

  • 用户1098335
    2018-03-06 10:24:22

    不就是第一个按钮按下响应的事件吧

  • 用户1098335
    2018-03-06 10:23:26

    function(e) {

            alert('e.which: ' + e.which)

        })

    这多写了吧