提取dom邻节点(兄弟节点)
<h2 onclick="show(this)">
<ul>
<li></li>
<li></li>
</ul>
</h2>
function show(ob) {
var index= ob.nextSibling.nodeType;
var reObj;
if (index== 3) { //firefox
reObj= ob.nextSibling.nextSibling;
}
else { //IE
reObj= ob.nextSibling;
}
if (reObj.style.display == '' || reObj.style.display != 'none')
reObj.style.display = 'none';
else
reObj.style.display = '';
}