Node Properties:
First on the code:
<%@ page language= "java" import= "java.util.*" pageencoding= "GB2312"%><%string path = request.getcontextpath (); String basepath = request.getscheme () + "://" +request.getservername () + ":" +request.getserverport () +path+ "/";%><! doctype html public "-//w3c//dtd html 4.01 transitional//en" >Summarize:
NodeType:
1. Representing the element node type
2. Representing the attribute node type
3. Representing the text node type
NodeName:
Element node: element name
Attribute node: Property name
Text nodes: #text
NodeValue:
Element node has no nodevalue, so the value is null
The nodevalue of the attribute node is his property value.
The nodevalue of a text node is the text content
This article is from the "Love Coffee" blog, please be sure to keep this source http://4837471.blog.51cto.com/4827471/1569236
JavaScript dom_6 Node Properties