deal - 副本.js
2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
if( !window.Yoho ){
var Yoho = new Object();
}
Yoho.Deal = {
init: function(){
Yoho.Deal.imagesSwitch(); //大小图切换
Yoho.Deal.goodsNumChange(); //增减数量
Yoho.Deal.buttonSwitch(); //选项卡切换效果
Yoho.Deal.commentsItems(); //顾客咨询 与 购买评价切换
Yoho.Deal.afterService(); //售后服务展开关闭
},
//大小图切换
imagesSwitch: function(){
$('.goods-img-small a').mouseover(function(){
var data_src = $(this).find('img').attr('src');
var new_src = data_src.replace(/75x100/g,'420x560');
$('#bigImage').attr('src',new_src);
});
},
//增加商品数量
augmentAddNum: function(){
var num = parseInt($('#num').val());
num = num+1;
$('#num').val(num);
},
//减少商品数量
augmentMinusNum: function(){
var num = parseInt($('#num').val());
if(num == 1){
alert('已经是最后一件了,就不要再减了吧!');
return false;
}
num = num-1;
$('#num').val(num);
},
//增减数量
goodsNumChange: function(){
$('.amount-sub').click(function(){
Yoho.Deal.augmentMinusNum();
});
$('.amount-add').click(function(){
Yoho.Deal.augmentAddNum();
});
},
//选项卡切换效果
buttonSwitch: function(){
$('.goods-attr dt span').click(function(){
var index = $(this).parent().find('span').index($(this));
if( $(this).parent().find('span').length > 1 && $(this).closest('dl.goods-attr').find('dd').length>1 ){
var conBox = $(this).closest('dl.goods-attr').find('dd');
$(this).parent().find('span').removeClass('cur');
$(this).addClass('cur');
if( conBox.eq(index).css('display') == 'none' ){
conBox.slideUp('fast');
conBox.eq(index).slideDown('fast');
}
}
});
},
//顾客咨询 与 购买评价切换
commentsItems: function(){
$('#comments_title dt span').click(function(){
var index = $(this).parent().find('span').index($(this));
$(this).parent().find('span').removeClass('cur');
$(this).addClass('cur');
$('#comments_box dl').eq(index).removeClass('hidden').siblings().addClass('hidden');
});
},
//售后服务展开关闭
afterService: function(){
$('.after-sale-close').click(function(){
//$('#afterService').slideToggle();
if($('#afterService').css('display') == 'none'){
$('#afterService').slideDown();
$(this).find('.ifont10').html('[');
}else{
$('#afterService').slideUp();
$(this).find('.ifont10').html(']');
}
});
}
}