我有这样的加载功能:
function loadComprar(){
$("#Inicio").fadeOut(300, function(){
$("#Inicio").load("x.html", function(){
$(this).fadeIn(300);
});
});
};
但是它缺少在执行加载时更改 URL 的东西。我尝试使用该history.pushState()
功能,但我不确定我是否遗漏了什么或什么,但如果我重新加载页面,它会说 url 无效(这是正确的,因为我的 url 中没有文件变化)。有小费吗?