var crm_sdk = function() { var _this = this; this.send = function($type,$data) { if(!$type) { return false; } var $ref = $("#CRM_REFERER").val(), $url = $("#CRM_URL").val(); $.ajax({ url:'/ajax/ajax_send_crm.php', type:'POST', cache:false, data:{type:$type,ref:$ref,url:$url,data:$data}, success:function(d) { //console.log(d); }, error:function(d) { console.log(d.responseText); } }); } this.init = function() { $(document).ajaxComplete(function(event,xhr,set){ //加入購物車 if( set.url.indexOf("ajax_add_to_cart.php") > 0 || set.url.indexOf("ajax_cart_add.php") > 0 ) { if(set.data.indexOf("Type=wishList") > 0) { _this.send('RemoveNext','status=3'); } _this.send('AddCart',set.data); } //移除購物車 else if(set.url.indexOf("ajax_cart_del.php") > 0) { _this.send('RemoveCart',set.data); } //商品列表願望清單 else if(set.url.indexOf("ajax_add_wish_list.php") > 0) { var str = '*'+set.data; if(str.indexOf("Type=del") > 0) { _this.send('RemoveNext',set.data); } else { console.log('AddNext'); _this.send('AddNext',set.data); } } //購物車下次買 else if(set.url.indexOf("ajax_cart_next.php") > 0) { _this.send('RemoveCart','status=3'); _this.send('AddNext',set.data); } //刪除下次買 else if( set.url.indexOf("ajax_del_order_next-p.php") > 0 || set.url.indexOf("ajax_del_wish.php") > 0 ) { _this.send('RemoveNext',set.data); } //願望清單加入購物車 else if(set.url.indexOf("ajax_add_to_order_cart-p.php") > 0) { _this.send('RemoveNext','status=3'); _this.send('AddCart',set.data); } //購物車修改數量 else if(set.url.indexOf("ajax_cart_edit.php") > 0) { _this.send('RemoveCart','status=3'); _this.send('AddCart',set.data); } else { return false; } }); $(document).ready(function(){ var url = '*'+$("#CRM_URL").val(); //首頁新品上市 $("#new_arrivals").on('click','[href]',function(){ var href = $(this).attr("href"); if(href.indexOf("product-detail") > 0) { _this.send('IndexNew','serial_no='+href.replace('/product-detail/','')); } }); //新品推薦 if(url.indexOf("/lookbook-detail/") > 0 || url.indexOf("/lookbook-collection/") > 0) { $(".popupbox").on('click','[href]',function(){ var href = $(this).attr("href"); if(href.indexOf("product-detail") > 0) { _this.send('LookBook','serial_no='+href.replace('/product-detail/','')); } }); } //時尚雜誌 if(url.indexOf("/fashion-detail/") > 0) { $(".recommend").on('click','[href]',function(){ var href = $(this).attr("href"); if(href.indexOf("product-detail") > 0) { _this.send('Fashion','serial_no='+href.replace('/product-detail/','')); } }); } //商品列表 if(url.indexOf("/products/") > 0) { $("body").on('click','[href]',function(){ var href = $(this).attr("href"); if(href.indexOf("product-detail") > 0) { _this.send('ProductList','serial_no='+href.replace('/product-detail/','')); } }); } //商品詳細頁猜你喜歡 if(url.indexOf("/product-detail/") > 0) { $(".recommend").on('click','[href]',function(){ var href = $(this).attr("href"); if(href.indexOf("product-detail") > 0) { _this.send('ProductDetail','serial_no='+href.replace('/product-detail/','')); } }); } //新會員加入 if(url.indexOf("/member-success/") > 0) { _this.send('AddMember',''); } //會員修改 if(url.indexOf("/member-modify/") > 0) { _this.send('EditMember',''); } }); } } var crm = new crm_sdk(); //crm.init();