Authored by yyq

mini购物车 搜索提示降级

... ... @@ -82,7 +82,9 @@
{{/ navbars}}
</ul>
<div class="func-area hide">
{{#unless @root.pc.common.disSearchAssociation}}
<ul class="search-suggest"></ul>
{{/unless}}
<div class="search-2016">
<form action="//search.yohobuy.com" method="get" id="search-form">
<input type="hidden" id="defaultsearch">
... ... @@ -101,6 +103,7 @@
<span class="goods-num-tip">0</span>
{{/unless}}
</a>
{{#unless @root.pc.common.disCartHover}}
<div class="mini-cart-wrapper">
<div class="loading-cart">
<h3>加载中,请稍后</h3>
... ... @@ -109,6 +112,7 @@
<h3>您的购物车暂无商品</h3>
</div>
</div>
{{/unless}}
</div>
</div>
</div>
... ...
... ... @@ -608,22 +608,25 @@ $searchForm.on('keyup', '.search-key', function(e) {
$focus.addClass('action');
$(this).val($focus.find('.searchvalue').text());
} else if (e.which === 13) {
val = val.replace(new RegExp('\'', 'gm'), '');
if (val !== '') {
$(this).val(val);
$searchForm.submit();
}
} else {
if ($searchSug && $searchSug.length) {
val = val.replace(new RegExp('\'', 'gm'), ''); // 去掉特殊字符
$(this).val(val);
searchSuggest(val);
}
}
}).on('blur', '.search-key', function() {
setTimeout(function() {
$searchSug.hide();
}, 200);
});
$goCart.hover(function() {
if ($miniCart && $miniCart.length) {
$goCart.hover(function() {
var data, _html = '';
if ($goCart.hasClass('on-hover')) {
... ... @@ -639,11 +642,11 @@ $goCart.hover(function() {
}
$miniCart.html(_html);
$goCart.addClass('on-hover');
}, function() {
}, function() {
$goCart.removeClass('on-hover');
});
});
$goCart.on('click', '.cart-goods-del', function() {
$goCart.on('click', '.cart-goods-del', function() {
var $dom = $(this),
data = $dom.data(),
callback;
... ... @@ -655,7 +658,8 @@ $goCart.on('click', '.cart-goods-del', function() {
data.key = $goCart.data().key;
delCartGoods(data, callback);
}
});
});
}
$subNav.on({
mouseenter: function() {
... ...