问答详情
源自:5-1 on()的多事件绑定

这样为啥没效果?

$("#test3").on({

        mousedown: function(){

            $(this).css("background","red");

        }

        mouseup: function(){

            $(this).css("background","green");      

            }

        

    })

 

提问者:雪中_悍刀行 2016-12-11 11:15

个回答

  • 高jay
    2016-12-11 14:02:55
    已采纳

    两个对象之间缺了一个逗号

    $("#test3").on({

     

            mousedown: function(){

     

                $(this).css("background","red");

     

            },

     

            mouseup: function(){

     

                $(this).css("background","green");      

     

                }

     

             

     

        })


  • 高jay
    2016-12-11 14:59:08

    特意新建了个demo测试了下。。

  • 高jay
    2016-12-11 14:11:43

    说错了是对象的两个属性之间缺了逗号  忘采纳