我的slideDown效果在调用load方法后没有显示,我的代码是:
$("#outerDiv").load("vacation.do #innerDiv",{},function () {$("#outerDiv").slideDown("slow");});
有什么问题?
答案 0 :(得分:0)
运行代码时#outerDiv不存在。
$(document).ready(function(){
//put Your code here so that it runs when all the HTML content
// is already parsed by the browser
});
这是之前提及的$(function(){ /* your code */ });
更易理解的版本。