web前端购物车功能实现

2024-11-13 03:53:44
推荐回答(3个)
回答1:

其实思路都是很简单的,如果你要纯前端的实现,那用Javascript或者jquery就可以做了,如果想前后端联动,那么具体数据操作你就提交到后台,然后后台重新返回页面就可以了

回答2:

$.post(
basePath+"/shoppingcar/selectAll.do",
{},
function(result){

if(result.success){

var obj=result.data;

$(obj).each(function(index){

var url="upload/image/"+this.car_id+"/"+this.car_image+"/"+this.wl_image_a+"";

addshop='';
addshop+='';
addshop+=''+this.car_id+''+this.car_name+'';

addshop+=''+this.car_price+'';

addshop+='';

addshop+=''+this.car_price+'';
addshop+='';
addshop+='';

$(".shopcar").prepend(addshop);
$(".shopcar").append('');

});

$("img").bind("click",function(){
var cc=$(this).attr('alt');

location.href="training.html?id="+cc+"";

});

mode();

}else{

}
});

}

回答3:

这可以通过jQuery封装的ajax轻松实现,我可以给你一个使用Servlet的实现,我的邮箱:gbagony92@163.com