摘要: function: function getNextElement(node){ if(node.nodeType==1){ return node; } if(node.nextSibling){ return getNextElement(node.nextSibling); } return null; }实例代码:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML... 阅读全文
posted @ 2012-02-20 22:47 猪弟 阅读(303) 评论(0) 推荐(0)