这期内容当中小编将会给大家带来有关 pjax如何在jQuery中使用,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
DEMO1:
客户端:
<!DOCTYPEhtml>
<html>
<head>
<title>pjax</title>
<metacharset="utf-8">
</head>
<body>
<h2>MySite</h2>
<div>
Goto<ahref="res1.php">第一页</a>.<ahref="res2.php">第二页</a>
</div>
<divid="container"></div>
</body>
<scriptsrc="../jquery-2.1.4.min.js"></script>
<scriptsrc="../jquery.pjax.js"></script>
<scripttype="text/javascript">
$(document).pjax('a','#container')
</script>
</html>
服务器端:
res1.php
<?php
echo"<divstyle='background:red;'>第一页</div>";
res2.php
<?php
echo"<divstyle='background:red;'>第二页</div>";
解释:$(document).pjax('a', '#container')其中a是触发元素,#container是装载pjax返回内容的容器,下面也是这样。
DEMO2:
<!DOCTYPEhtml>
<html>
<head>
<title>pjax</title>
<metacharset="utf-8">
</head>
<body>
<h2>MySite</h2>
<div>
Goto<ahref="res1.php">第一页</a>.<ahref="res2.php">第二页</a>
</div>
<divid="container"></div>
</body>
<scriptsrc="../jquery-2.1.4.min.js"></script>
<scriptsrc="../jquery.pjax.js"></script>
<scripttype="text/javascript">
$(document).pjax('a','#container')
</script>
</html>
客户端:
<!DOCTYPEhtml>
<html>
<head>
<title>pjax</title>
<metacharset="utf-8">
</head>
<body>
<h2>MySite</h2>
<div>
<inputtype="button"id="clickMe"value="GO">
</div>
<divid="container"></div>
</body>
<scriptsrc="../jquery-2.1.4.min.js"></script>
<scriptsrc="../jquery.pjax.js"></script>
<scripttype="text/javascript">
$(function(){
$('#clickMe').click(function(){
$.pjax({
url:'./res3.php',
container:'#container'
});
});
});
</script>
</html>
服务器端代码:
res3.php:
<?php
echo"<divstyle='background:red;'>第三页</div>";
上述就是小编为大家分享的 pjax如何在jQuery中使用了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注恰卡编程网行业资讯频道。