本文实例讲述了php+ajax实现商品对比功能。分享给大家供大家参考,具体如下:
商品对比调用的js文件(包含了商品对比框浮动js):
/*浮动窗口*/(function(){ var n=10; var obj=document.getelementbyid("goods-compare"); if(!obj){ return fal; } var x=0; window.onscroll=function(){ obj.style.top=(document.body.scrolltop||document.documentelement.scrolltop)+n+'px'; }; window.onresize=function(){ obj.style.top=(document.body.scrolltop||document.documentelement.scrolltop)+n+'px'; };})();//添加显示对比框function addcompare(chk){ $('#goods-compare').fadein().show(); var count=$(".compare-box li").length; if (count>2)//这里可以修改对比的数据哦 { alert('产品比较最多选3种哦'); return; } $.ajax({ type: 'post', url: 'ajax.php', data: { 'action':'1', 'gid':chk.gid,//商品id 'gname':chk.gname,//商品名称 'gtype':chk.gtype//商品类别,类别不同时不能比较 }, cache: fal, async: fal, success: function(result) { if(result!='') { alert(result); }el{ var url='http://www.lun.com/product-'+chk.gid+'.html';//设置商品的链接地址 $(".compare-box").append("<li class='division clearfix' id='"+chk.gid+"'><div class='span-3'><a href='"+url+"' target='_blank' title='"+chk.gname+"'>'"+chk.gname+"'</a></div><span onclick=\"removecompare('"+chk.gid+"');\">删除</span></li>") $("#comids").val($(".compare-box li").map(function(){//将对比的所有商品id,赋值给#comids return $(this).attr('id'); }).get().join(",")); } } });}//删除对比产品function removecompare(id){ $.ajax({ type: 'post', url: 'ajax.php', data: { 'action':'2', 'gid':id }, cache: fal, success: function(result) { $("#"+id).remove(); $("#comids").val($(".compare-box li").map(function(){ return $(this).attr('id'); }).get().join(",")); } });}//清空对比产品function clearcompare(){ $.ajax({ type: 'post', url: 'ajax.php', data: { 'action':'3' }, cache: fal, success: function(result) { $(".compare-box").html(''); $("#comids").val(''); } });}//显示对比框function showcompare(){ $.ajax({ type: 'post', url: 'ajax.php', data: { 'action':'4' }, success: function(result) { if(result){ $(".compare-box").append(result); $("#comids").val($(".compare-box l过年作文300字i").map(function(){ return $(this).attr('id'); }).get().join(",")); $('#goods-compare').fadein().show(); } } });}//点击关闭对比框$('.clo-gc').click(function(){ $('#goods-compare').fadeout().hide();});
商品对比调用ajax文件:
<?phpfunction mb_unrialize($rial_str) { $rial_str =stripslash风雪梧桐es($rial_str); return unrialize($rial_str);}if($_post['action']=='1') {//add if(ist($_cookie['gtype'])) { if($_cookie['gtype']!=$_post['gtype']) { echo '对不起,您选择的是不同类别的产品无法加入对比,请选择同类产品或清空当前对比栏再选择。'; return; } }el { tcookie('gtype',$_post['gtype']); } if(ist($_cookie['gid'])) { $arr_str = $_cookie['gid']; $arr=mb_unrialize($arr_str); if(count($arr)>2) {//商品比较数量 echo "商品比较最多选3种"; return; } foreach($arr as $val) { if($val[0]==$_post['gid']) { echo "该商品已经加入对比框"; return; } } $info=array($_post['gid'],$_post['gname'],$_post['gtype']); $arr[]=$info; $arr_str=rialize($arr); tcookie('gid',$arr_str); }el { $info=array($_post['gid'],$_post['gname'],$_post['gtype']); $arr[]=$info; $arr_str=rialize($arr); tcookie('gid',$arr_str); }}el if($_post['action']=='2') {//delone $id=$_post['gid']; $arr_str = $_cookie['gid']; $arr=mb_unrialize($arr_str); foreach($arr as $key=>$val) { if($val[0]==$id) { unt ($arr[$key]); } } $arr_str=rialize($arr); tcookie('gid',$arr_str);}el if($_post['action']=='3') {//delall tcookie('gid',''); tc竞选生活委员ookie('gtype','');}el if($_post['action']=='4') {//showlist if(ist($_cookie['gid'])) { $dat酒精怎么稀释a=''; $arr_str = $_cookie['gid']; $arr=mb_unrialize($arr_str); foreach ($arr as $val){ $url="http://www.lun.com/product-".$val[0].".html"; $data.="<li id='{$val[0]}' class='division clearfix'><div class='span-3'><a href='{$url}' target='_blank' title='{$val[1]}'>{$val[1]}</a></div><span onclick=\"removecompare('{$val[0]}');\">删除</span></li>"; } echo $data; }}?>
更多关于php相关内容感兴趣的读者可查看本站核心概念界定专题:《php+ajax技巧与应用小结》、《php网络编程技巧总结》、《php基本语法入门教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家php程序设计有所帮助。
本文发布于:2023-04-07 09:16:39,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/002cacc54981cfdc799ed5b3271106ea.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:php+ajax实现商品对比功能示例.doc
本文 PDF 下载地址:php+ajax实现商品对比功能示例.pdf
留言与评论(共有 0 条评论) |