location.href = location.href.substring(0,location.href.lastIndexOf('?'))+'?typeId=' + fid + '&page=' + page;
其实这样写就可以了:
location.href ='?typeId=' + fid + '&page=' + page;
location.href = location.href.substring(0,location.href.lastIndexOf('?'))+'?typeId=' + fid + '&page=' + page;
其实这样写就可以了:
location.href ='?typeId=' + fid + '&page=' + page;