JS收缩展开效果

来源:互联网 发布:xml与json的区别是什么 编辑:程序博客网 时间:2024/05/16 08:24
        // 收缩展开效果        $(document).ready(function () {            $(".box h2").toggle(function () {                $(this).next(".text").animate({ height: 'toggle', opacity: 'toggle' }, "slow");            }, function () {                $(this).next(".text").animate({ height: 'toggle', opacity: 'toggle' }, "slow");            });        });
 <div class="box" id="ZPDIV" runat="server">        <h2>收缩装配规范表信息</h2> </div>
原创粉丝点击