window.location搜索路径不起作用

时间:2013-05-16 07:18:37

标签: search window.location

以下搜索功能导航到: 的 http://webbsite.com/?search=query 代替 的 http://webbsite.com/search?q=query

           this._search = function (evt) {
        var searchValue = this.select('searchTextSelector').val();
        if (searchValue !== '' && evt.which === 13 /*enter*/) {
            var query = this._getValFromEventObject(evt);
            window.location.href = '/search?q=' + query;
        }
    };

如何更改window.location路径?

好的抱歉,我通过添加e.preventDefault();

解决了这个问题

1 个答案:

答案 0 :(得分:0)

通过添加e.preventDefault();

来修复