jquery 从下往上的收缩展开效果 默认展开

$(document).ready(function(){
$(".con .dynamic").toggle(function(){
$(this).next(".tab_ul").animate({height: 'toggle', opacity: 'toggle'}, "slow");
},function(){
$(this).next(".tab_ul").animate({height: 'toggle', opacity: 'toggle'}, "slow");
});
});

第1个回答  2015-01-20
如果用的是jq可以用这个函数

$(document).ready(function(){
$(".con .dynamic").next(".tab_ul").slideDown();//默认显示
$(".con .dynamic").click(function(){
$(this).next(".tab_ul").slideToggle("slow");//显示切换
});
});

希望对你有所帮助本回答被提问者采纳
第2个回答  2015-01-20
$ (document).ready (function ()
{
$ (".con .dynamic").click (function ()
{
$ (this).next (".tab_ul").slideToggle ('slow');
});
});
第3个回答  2017-11-20
$(document).ready(function(){
$(".con .dynamic").next(".tab_ul").hide();//隐藏
$(".con .dynamic").click(function(){
$(this).next(".tab_ul").slideToggle("slow");//切换
});
});
相似回答