打印出该Node的字符串表示形式。
String toString() { String? value = nodeValue; // Fetch DOM Node property once. return value == null ? super.toString() : value; }