history.pushState()实现不跳转,改变路由异步刷新

实现异步刷新

<button data-url='/article/159'>button>
history.pushState(state,null,$(this).attr('data-url'));
$.get($(this).attr('data-url'),function(res){
    $('#content-wrapper').html(res);
});

你可能感兴趣的:(前端)