我正在使用 wordpress,一旦您单击任何本地链接,我想更改 url。我正在使用 ajax 加载页面,这就是我想要这样做的原因。
我可以更改网址,在“http://site.com/”和加载的内容/example-page/之间添加一个哈希,结果:“http://site.com/#/example-page”和它加载示例页面,但我想添加“!” 标记以获取“http://site.com/#!/example-page”就像这个主题
我正在使用jquery-hashchange插件顺便说一句。
请让我知道你在想什么。
此代码是在解决后编辑的,所以这是正确的代码。
jQuery(document).ready(function($) {
var $mainContent = $("#container"),
siteUrl = "http://" + top.location.host.toString(),
url = '';
$(document).delegate("a[href^='"+siteUrl+"']:not([href*=/wp-admin/]):not([href*=/wp-login.php]):not([href$=/feed/])", "click", function() {
location.hash = '!' + this.pathname;
return false;
});
$("#searchform").submit(function(e) {
location.hash = 's/' + $("#s").val();
e.preventDefault();
});
$(window).bind('hashchange', function(){
url = window.location.hash.substring(3);
if (!url) {
return;
}
url = url + " #content";
$mainContent.animate({opacity: "0.1"}).html('Please wait...').load(url, function() {
$mainContent.animate({opacity: "1"});
});
});
$(window).trigger('hashchange');
});