标签:
$(‘.submenuA‘).toggle(
function () { $(this).next(‘div‘).show(); },
function () { $(this).next(‘div‘).hide(); })
JQ 使用toggle实现DIV的隐藏和显示
原文地址:http://www.cnblogs.com/zgaspnet/p/4330060.html