我正在开发一个 WordPress 网站,希望在其中使用 ajax 加载内容。虽然我不太确定我的代码有多好,但我似乎让它工作了!我的问题是我希望哈希在 URL(地址栏)而不是帖子 ID 中显示帖子标题(slug),但我无法弄清楚。
谁能给点建议,谢谢
$(document).ready(function(){
$.ajaxSetup({cache:false});
$(".post-pop").click(function(){
var post_url = $(this).attr("href");
var post_id = $(this).attr("rel");
$('body,html').animate({scrollTop: 0}, 800);
$("#your_post_here").load("http://<?php echo $_SERVER[HTTP_HOST]; ?>/blog-post/",{id:post_id});
window.location.hash = post_id;
return false;
});
if(document.location.hash!='') {
var hashVal = window.location.hash.substring(1);
$('body,html').animate({scrollTop: 0}, 0);
$("#your_post_here").load("http://<?php echo $_SERVER[HTTP_HOST]; ?>/blog-post/",{id:hashVal});
return false;
}
});