课程
/前端开发
/jQuery
/jQuery基础课程
怎么理解呢
2015-03-08
源自:jQuery基础课程 10-2
正在回答
$("#divtest").children(':first')代表的是产品区下面的'box' 啥叫产品区下面的box?
(function () {
$(".drag").draggable();
$(".cart").droppable({
drop: function () {
$(this).addClass("focus").find("#tip").html("");
},
out:function(){
$(".cart").removeClass("focus");
$("#tip").html("还没有产品");
}
});
可以用out来表示拖曳离开
_且行且思
$("#divtest").children(':first')代表的是产品区下面的'box' ,‘苹果’放入时触发是件
$(".drag")代表的是‘苹果’,本身是拖曳用的,不是放置的盒子
你这个问题解决了吗?懂了能给我讲下??
举报
加入课程学习,有效提高前端开发速度