1

我正在使用 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');
});
4

1 回答 1

3

改变

location.hash = this.pathname;

location.hash = "#!" + this.pathname;

(严格来说,您之前应该有哈希)并更改

url = window.location.hash.substring(1);

url = window.location.hash.substring(2);

也改变

location.hash = '?s=' + $("#s").val();

location.hash = '#!?s=' + $("#s").val();
于 2012-05-19T22:55:10.863 回答