function get_nextSibling(n){ var x=n.nextSibling; while (x && x.nodeType!=1){ x=x.nextSibling; } return x; }
为啥不是这样判断:while(x != null && x.nodeType != 1) ??这点没看明白
哈哈,是的,是一条线。35/4=8......3,8%3=2.
函数中的n是什么意思啊
x!=null,x!=0,意思不一样;
看起来是等价的呀