我这为什么输出不出来?
function get_previousSibling(n){
x=n.previousSibling
while(x&&x.type!=1){
x=x.previousSibling
}
return x;
改为 (x&& x.nodeType!=1)