gpt4 book ai didi

javascript - 使用 History API 进行 Ajax div 加载

转载 作者:行者123 更新时间:2023-12-03 11:25:29 25 4
gpt4 key购买 nike

在我的 WP 网站中,我在点击事件上使用 ajax 将帖子内容加载到 div 中。
我现在需要它来更改当前帖子的 url,我宁愿不使用哈希值。
我如何使用我的 js 来实现这个?

JS:

    jQuery(document).ready(function() {
jQuery('#main-content').on('click', '.page a', function(e) {
e.preventDefault();
var url = jQuery(this).attr('href');
jQuery('#main-content').html('<h4>Loading...</h4>').load(url+ ' #main-content');
});
});

我研究过 History API,但我不知道如何用我的 js 实现它。

最佳答案

我自己还没有这样做过,但是使用pushState应该非常简单:https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Manipulating_the_browser_history

var stateObj = { foo: "bar" };
history.pushState(stateObj, "New Page Title", "newPath.html");

这是一个扩展示例,您可以将内容、路径和标题替换为 WordPress 查询的结果,以获取下一篇文章。

<!doctype html>
<html>
<head>
<title>Push State Testing</title>
<script type='text/javascript'>
var i = 1;
function goToPage( pageNumber, pushState ) {
var content = "Hello World " + pageNumber,
path = "hello_world_" + pageNumber,
title = content,
stateObj = {"content":content}
;
document.title = title;
document.getElementById('content').innerHTML = content;
if( pushState ) {
history.pushState({index:pageNumber}, title, path);
}
i = pageNumber;
}
function nextPage() {
goToPage( i+1, true );
}
window.onload = function() {
goToPage(1);
history.replaceState({index:1}, "Hello World 1", "hello_world_1");
}
window.onpopstate = function(event) {
goToPage(event.state.index, false);
}
</script>
</head>
<body>
<div id='content'>Push State Testing</div>
<button type='button' onclick='nextPage()'>Next</button>
</body>
</html>

回答评论里的问题。不,在知道内容之前,您不需要知道 URL 的路径。您替换内容并同时执行pushState:

$('#mainContent').html( contentFromWp );
history.pushState( state, titleFromWp, pathFromWp );

好吧,所以采取上面的内容并尝试为您编写它,我无法测试它,所以我不能保证这会像我上面的示例一样工作......它会是这样的:

jQuery(document).ready(function() {
jQuery('#main-content').on('click', '.page a', function(e) {
e.preventDefault();
var url = jQuery(this).attr('href'),
title = jQuery(this).attr('title')
;
jQuery('#main-content').html('<h4>Loading...</h4>').load(url+ ' #main-content');
document.title = title;
history.pushState({url:url,title:title}, title, url );
});
});

window.onpopstate = function(event) {
document.title = event.state.title;
jQuery('#main-content').html('<h4>Loading...</h4>').load(event.state.url+ ' #main-content');
}

请注意,需要 onpopstate 才能使后退按钮正常工作。当您的网页首次加载时,您还需要调用history.replaceState,就像我在示例中所做的那样,以便当用户返回到第一页时,他们所在的第一页将重新加载...否则,用户只会能够返回到他们导航到的第二个页面,因为返回到第一个页面不会有 stateObj。

关于javascript - 使用 History API 进行 Ajax div 加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26934137/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com