mousedown和mouseup不能同时存在吗?

来源:2-2 jQuery鼠标事件之mousedown与mouseup事件

石榴笑了

2018-09-13 09:17

<h4>测试二</h4>

    <div class="test2">

        <p>$('button:first').mousedown(function(e) {alert(this)})</p>

    </div>

    <button>指定触发事件</button>

    <script type="text/javascript">

    $('p').mousedown(function(e) {

            alert(e.target.textContent)

        })

    $('p').mouseup(function(e) {

            alert("搞笑吗?")

        })

        //this指向button元素

    $("button:eq(1)").mousedown(function() {

        $('p').mousedown() //指定触发绑定的事件

    })

    </script>


写回答 关注

2回答

  • 石榴笑了
    2018-09-13 09:49:00

    https://img1.mukewang.com/5b99c1f30001496d13630581.jpg调试没问题?

  • 慕UI8386742
    2018-09-13 09:24:53

     $('p').mouseup(function(e) {

               console.log(1)

            })

             $('p').mousedown(function(e) {

               console.log(2)

            })


    石榴笑了

    我调试的结果在下一条回复

    2018-09-13 09:49:50

    共 1 条回复 >

jQuery基础(三)—事件篇

jQuery第三阶段开启事件修炼,掌握对页面进行交互的操作

89996 学习 · 625 问题

查看课程

相似问题