幫助,我與pjax麻煩。pjax does not工作
我下載最新的pjax在https://github.com/defunkt/jquery-pjax
然後我代碼演示,但它簡化版,工作。 的main.html中
<!DOCTYPE html>
<html>
<head>
<title>main.html</title>
<script type="text/javascript" src="../js/jquery/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="../js/jquery/plugin/jquery.pjax.js"></script>
<script>
$(function(){
$(window.document).pjax('a', '#pjax-container')
});
</script>
</head>
<body>
<h1>My Site</h1>
<div class="container" id="pjax-container">
Go to <a href="MyHtml.html">next page</a>.
</div>
</body>
</html>
和MyHtml.html如下
<!DOCTYPE html>
<html lang="en">
<head>
<title>MyHtml.html</title>
</head>
<body>
This is my HTML page. <br>
</body>
</html>
當我點擊了該鏈接,它期待MyHtml.html directly.is有我的代碼什麼問題?
我可以確定pjax已經工作了一些東西,當我點擊後退按鈕到main.html,它回到我在main.html之前使用的另一個頁面。
你沒有關注的jQuery的pjax指令。 – 2013-04-02 22:46:26
您可以編輯問題以包含「MyHtml.html」的內容嗎? – 2013-04-05 04:16:42
MyHtml.html只是一個你好世界page.no腳本或元.only在體內的'你好世界'。 – miles 2013-04-05 12:01:01