很抱歉这个愚蠢的问题,但我怎样才能添加这一行
$("#wrapper").css("display", "none")
这段代码?
$(".displaymedia").fancybox({
helpers: {
title : {
type : 'outside'
},
overlay : {
speedOut : 0
}
}
});
Dreamweaver一直在给我语法错误......
答案 0 :(得分:1)
$(".displaymedia").fancybox({
helpers: {
title : {
type : 'outside'
},
overlay : {
speedOut : 0
}
},
onComplete: function() {
$("#wrapper").css("display", "none");
}
});
请务必先查看API文档。