列表的隐藏与显示

function action(m) { content = document.getElementById(m.id + '_content'); with (content.style) { display = display == 'none' ? '' : 'none'; } }

你可能感兴趣的:(列表的隐藏与显示)