请教一下:
x && x.nodeType!=1
直接写x.nodeType!=1就可以了, 前面还要单独加X判断
相当于 x != null && x.nodeType != 1
因为你得先保证这个节点存在啊