pjax片段麻烦

时间:2013-03-19 20:46:44

标签: javascript jquery ajax html5 pjax

我正在尝试使用pjax的片段选项来仅刷新页面的一部分。点击没有任何反应,没有抛出任何错误,只重新加载硬页面。没有进行ajax通话。用chrome测试

<!DOCTYPE html>
<html>

  <head>
    <title>PJAX TEST</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
    <link href="/css/reset.css" rel="stylesheet" media="all">
    <link href="/css/index-style.css" rel="stylesheet" media="all">

    <script src="http://code.jquery.com/jquery.js"></script>
    <script src="/jquery.pjax.js"></script>
    <script src="/script.js"></script>
  </head>

  <body>

    <div class="wrapper">
        <div class="header">
          <ul id="navlist">
            <li><a href="/index.html">click</a></li>
            <li><a href="/one/index.html">click 1</a></li>
            <li><a href="/two/index.html">click 2</a></li>
            <li><a href="/three/index.html">click 2</a></li>
          </ul>
        </div>

        <div id="container">

          <div id="inner-content">

            <h1>YEA YEA - INDEX PAGE</h1>
            <div id="text-block">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

            </div>
          </div>

        </div>

        <div class="footer">
            <h3>Sticky footer</h3>
        </div>
    </div>

  </body>
</html> 

并且script.js是

$(function(){


    $('li a').pjax("#container", { fragment: "#container" });

});

1 个答案:

答案 0 :(得分:1)

必须添加

<div id="container" data-pjax-container>

到容器和

$(document).pjax('a', '[data-pjax-container]', { fragment: "#container" });

到JS