课程
/前端开发
/jQuery
/jQuery基础课程
为什么一定要用 $("#divtest").children(":first").droppable({})
2015-04-11
源自:jQuery基础课程 10-2
正在回答
用这个根本就不是想要的效果,children(":first"),指定的是class为box的div
可以用这个:$("#divtest").children(":first").children(":last").draggable();
举报
加入课程学习,有效提高前端开发速度