Authored by whb

h5的brand事件

... ... @@ -74,7 +74,6 @@ define('mobile', function(require, exports) {
});
$('.search-wrap').find('input').on('keyup', function(event) {
var keycode = event.which;
getBrand();
if(keycode == 13)
{
$('.search-wrap input').blur();
... ... @@ -90,7 +89,8 @@ define('mobile', function(require, exports) {
txtInput.removeClass('hasVal');
} else {
txtInput.addClass('hasVal');
};
};
getBrand();
});
getBrand();
};
... ...