日期:2014-05-16 浏览次数:20413 次
$('.cart').droppable({
onDragEnter:function(e,source){
$('.cart').css({"background":"#E8F2FE"});
$(source).draggable('options').cursor='auto';
},
onDragLeave:function(e,source){
$(source).draggable('options').cursor='not-allowed';
},
onDrop:function(e,source){
var name = $(source).find('p:eq(0)').html();
var price = $(source).find('p:eq(1)').html();
addProduct(name, parseFloat(price.split('$')[1]));
}
});