雪中_悍刀行
2016-12-11 11:15
$("#test3").on({ mousedown: function(){ $(this).css("background","red"); } mouseup: function(){ $(this).css("background","green"); } })
两个对象之间缺了一个逗号
$("#test3").on({
mousedown: function(){
$(this).css("background","red");
},
mouseup: function(){
$(this).css("background","green");
}
})
特意新建了个demo测试了下。。
说错了是对象的两个属性之间缺了逗号 忘采纳
jQuery基础(三)—事件篇
89996 学习 · 625 问题
相似问题
回答 1
回答 1