你能做的是
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(function()
{
$('ul li a').on('click',function()
{
var href = $(this).attr('href');
$.ajax(
{
url : href,
data : passData,
dataType : 'html'
beforeSend : function()
{
},
success : function(response)
{
//display it as needed...
}
});
});
});
</script>
<ul>
<li><a href="paging.aspx?page=1">1</a></li>
<li><a href="paging.aspx?page=2">2</a></li>
<li><a href="paging.aspx?page=3">3</a></li>
<li><a href="paging.aspx?page=4">4</a></li>
</ul>
在上面的示例中,我有四个分页链接,在该链接上单击事件我进行 AJAX 调用,然后在 AJAX 成功回调中根据您的意愿显示结果。
但请记住,jQuery 不能在使用 Node.js 的服务器上运行。