我使用以下内容在当前页面中加载新页面,不刷新。
$(document).ready(function(){
$("#leftnav").click(function(){
$.post("regions.php",function(data){document.write(data)},"html")
return false;
});
});
是否可以使用 jquery 为新页面设置动画,例如向上滑动新页面?
谢谢,
下面会将新内容添加到隐藏的 div 中,附加到 body 中,然后 slideDown。
$(document).ready(function(){
$("#leftnav").click(function(){
$.post("regions.php",function(data){
//create a div and hide it
//append new content then slideDown
$('<div />').hide()
.html(data)
.appendTo('body')
.slideDown()
return false;
});
});