有没有人有任何想法或建议?非常感谢,蒂姆
$("a").click(function(event){
event.preventDefault();
var driver = $(this).attr('href');
$(".content-center").animate({height: "0px"}, 500, function(){
navigate(driver);
});
});
答案 0 :(得分:3)
并非所有浏览器都支持navigate
功能。相反,使用:
window.location.href = driver;