线有什么用
this.parentNode.firstChild.nodeName
在以下来自 jQuery Highlight 插件的代码中。
jQuery.fn.removeHighlight = function () {
return this.find("span.highlight ").each(function () {
this.parentNode.firstChild.nodeName;
with(this.parentNode) {
replaceChild(this.firstChild, this);
normalize();
}
}).end();
};