Authored by wangqing

提交导航右侧小图的修改

@@ -104,7 +104,7 @@ @@ -104,7 +104,7 @@
104 {{/thirdnav}} 104 {{/thirdnav}}
105 </div> 105 </div>
106 </div> 106 </div>
107 - <div class="showdetail" data-code="220eec926e0d2c48b2f7e36fb9c42b83"> 107 + <div class="showdetail" data-code="{{content_code}}">
108 <a href="http://list.yohobuy.com/?gender=1,3&amp;msort=8"> 108 <a href="http://list.yohobuy.com/?gender=1,3&amp;msort=8">
109 <img src="http://img12.static.yhbimg.com/yhb-img01/2015/10/30/06/02af834d146e3f00b1f5fcc8388f641922.jpg?imageView/1/w/337/h/250" alt="" style=""></a> 109 <img src="http://img12.static.yhbimg.com/yhb-img01/2015/10/30/06/02af834d146e3f00b1f5fcc8388f641922.jpg?imageView/1/w/337/h/250" alt="" style=""></a>
110 <a class="title" href="http://list.yohobuy.com/?gender=1,3&amp;msort=8">热门小物优选</a> 110 <a class="title" href="http://list.yohobuy.com/?gender=1,3&amp;msort=8">热门小物优选</a>
@@ -720,6 +720,29 @@ function actionNav() { @@ -720,6 +720,29 @@ function actionNav() {
720 }); 720 });
721 } 721 }
722 722
  723 +function actionTipPic() {
  724 + var $content_code = ''
  725 + var serverApi = 'http://www.yohobuy.com/common/getbanner?content_code=';
  726 + var $img = '';
  727 + var $title = '';
  728 + var $link = '';
  729 +
  730 + $(document).on('mouseenter','.sub-nav-item',function(){
  731 + $content_code = $(this).find('.showdetail').attr('data-code');
  732 + if($content_code){
  733 + $img = $(this).find('.showdetail').find('img');
  734 + $title = $(this).find('.showdetail').find('.title');
  735 + $link = $(this).find('.showdetail').find('a');
  736 + $.get(serverApi + $content_code+'&width=337&height=250&client_type=web', function(rsdata) {
  737 + $img.attr('src',rsdata.data.src);
  738 + $link.attr('href',rsdata.data.url);
  739 + $title.text(rsdata.data.title);
  740 + }, 'jsonp');
  741 + }
  742 +
  743 + })
  744 +
  745 +}
723 746
724 /** 747 /**
725 * 查询跳转后保留关键字 748 * 查询跳转后保留关键字
@@ -1325,6 +1348,7 @@ function actionLoginInfo() { @@ -1325,6 +1348,7 @@ function actionLoginInfo() {
1325 */ 1348 */
1326 function init() { 1349 function init() {
1327 actionNav(); //处理导航 1350 actionNav(); //处理导航
  1351 + actionTipPic();//鼠标移入后查询
1328 actionExeTemplate(); //处理模板 1352 actionExeTemplate(); //处理模板
1329 actionInitCookie(); //初始化cookie 1353 actionInitCookie(); //初始化cookie
1330 actionExeCookieMap(); //格式化cookie 1354 actionExeCookieMap(); //格式化cookie