按下回车键时搜索无效

时间:2015-08-04 14:26:39

标签: opencart

正常情况下,当点按搜索图标时,opencart搜索会起作用,但在点击输入键而不是搜索图标时它不起作用

这是我试过的代码

$('#srch').keypress(function(e){
        if(e.which == 13){
            $('.button-search').click();
        }
    });

我是打开购物车的新手。请帮忙。

1 个答案:

答案 0 :(得分:1)

 $('#header input[name=\'product_search\']').bind('click', function(e) {
        if (e.keyCode == 13) {
        url = $('base').attr('href') + 'index.php?route=product/search';

        var search = $('input[name=\'search\']').attr('value');

        if (search) {
            url += '&search=' + encodeURIComponent(search);
        }

        location = url;
    }

});

试试这个。