var val = node.getAttribute(attr);
是不是应该改成
if (attr == 'class'){ var val = node.className; } else { var val = node.getAttribute(attr); }