在我的laravel项目中通过ajax进行了搜索。视图中的links()会在网址中生成“?page =“。为了使搜索查询能够进行分页,我正在使用;
$(window).on('hashchange' , function() {
if (window.location.hash) {
var page = window.location.hash.replace('#', '');
.......}});
如果未生成网址“#”(即页码)的网址,我似乎无法使用hashchange。或者,有什么方法可以代替#1而不是“?page = 1”?