|
@@ -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
|