Showing
1 changed file
with
6 additions
and
4 deletions
@@ -60,7 +60,7 @@ var limitProductCode, | @@ -60,7 +60,7 @@ var limitProductCode, | ||
60 | // 限购商品的skn。只有限购商品时才会设置。 | 60 | // 限购商品的skn。只有限购商品时才会设置。 |
61 | skn; | 61 | skn; |
62 | 62 | ||
63 | -var sizeInfo = $('.size-info'); | 63 | +var $sizeInfo; |
64 | 64 | ||
65 | //禁用数字编辑 | 65 | //禁用数字编辑 |
66 | function disableNumEdit() { | 66 | function disableNumEdit() { |
@@ -91,6 +91,7 @@ function init() { | @@ -91,6 +91,7 @@ function init() { | ||
91 | isEdit = 0; | 91 | isEdit = 0; |
92 | $mnum = $('#mnum'); | 92 | $mnum = $('#mnum'); |
93 | discountNum = $mnum.val() - 0; | 93 | discountNum = $mnum.val() - 0; |
94 | + $sizeInfo = $('.size-info'); | ||
94 | } | 95 | } |
95 | 96 | ||
96 | /* | 97 | /* |
@@ -477,8 +478,8 @@ $yohoPage.on('touchstart', '.color-list .block', function() { | @@ -477,8 +478,8 @@ $yohoPage.on('touchstart', '.color-list .block', function() { | ||
477 | //老的选中颜色去掉勾选,新的选中颜色加上勾选 | 478 | //老的选中颜色去掉勾选,新的选中颜色加上勾选 |
478 | changeColorChosed(0); | 479 | changeColorChosed(0); |
479 | 480 | ||
480 | - if (!sizeInfo.hasClass('hide')) { | ||
481 | - sizeInfo.addClass('hide'); | 481 | + if (!$sizeInfo.hasClass('hide')) { |
482 | + $sizeInfo.addClass('hide'); | ||
482 | } | 483 | } |
483 | 484 | ||
484 | // 当前尺码不是选中状态,选中时 | 485 | // 当前尺码不是选中状态,选中时 |
@@ -501,8 +502,9 @@ $yohoPage.on('touchstart', '.color-list .block', function() { | @@ -501,8 +502,9 @@ $yohoPage.on('touchstart', '.color-list .block', function() { | ||
501 | 502 | ||
502 | curColorIndex = index + 1; | 503 | curColorIndex = index + 1; |
503 | $curSizeBlock = $this; | 504 | $curSizeBlock = $this; |
505 | + // $('.size-info').removeClass('hide'); | ||
504 | 506 | ||
505 | - sizeInfo.html($(this).data('info')).removeClass('hide'); | 507 | + $sizeInfo.html($(this).data('info')).removeClass('hide'); |
506 | } | 508 | } |
507 | 509 | ||
508 | // 颜色块切换勾选样式 | 510 | // 颜色块切换勾选样式 |
-
Please register or login to post a comment