/**
* 加載xml文件,參數(shù):
* @param {string} xmlPath:加載的xml文件路徑;
* @return {Object} true 正常加載; false 加載失敗
*/
loadXml : function (xmlPath) {
try {
this.xmlDoc.async = false;
this.xmlDoc.load(xmlPath);
this.xmlPath = xmlPath;
return true;
} catch (e) {
return false;
}
},
/**
* 加載XML字符串
* @param {Object} XMLString
*/
loadXmlString: function(xmlString) {
if (this.isIE) {
this.xmlDoc.loadXML(xmlString);
} else {
var parser = new DOMParser();
this.XMLDoc = parser.parseFromString(xmlString, "text/xml");
}
},
/**
* 判斷節(jié)點(diǎn)的是否有子節(jié)點(diǎn)
* @param {Object} node
* @return {Object} 有子節(jié)點(diǎn)則返回true,否則返回false
*/
hasChildNodes : function (node) {
return node.hasChildNodes();
},
/**
* 判斷節(jié)點(diǎn)的是否有屬性
* @param {Object} node
* @return {Object} 有屬性則返回true,否則返回false
*/
hasAttributes : function (node) {
return (node.attributes.length > 0) ? true : false;
},
/**
* 判斷節(jié)點(diǎn)的是否是文本節(jié)點(diǎn),包括帶CDATA區(qū)段的文本節(jié)點(diǎn)
* @param {Object} node
* @return {Object} 是文本節(jié)點(diǎn)則返回true,否則返回false
*/
isTextNode : function (node) {
var type = this.getNodeType(node);
return (type == 3 || type == 4) ? true : false;
},
/**
* 返回根節(jié)點(diǎn)
* @return {Object} 根節(jié)點(diǎn)
*/
getRoot : function () {
return this.xmlDoc.documentElement;
},
/**
* 返回節(jié)點(diǎn)的第一個(gè)子節(jié)點(diǎn),沒有參數(shù)則返回根節(jié)點(diǎn)的第一個(gè)子節(jié)點(diǎn)
* @param {Object} node
* @return {Object} 節(jié)點(diǎn)的第一個(gè)子節(jié)點(diǎn)
*/
getFirstChild : function (node) {
return node ? node.firstChild : this.getRoot().firstChild;
},
/**
* 返回節(jié)點(diǎn)的最后子節(jié)點(diǎn),沒有參數(shù)則返回根節(jié)點(diǎn)的第一個(gè)子節(jié)點(diǎn)
* @param {Object} node
* @return {Object} 節(jié)點(diǎn)的最后一個(gè)子節(jié)點(diǎn)
*/
getLastChild : function (node) {
return node ? node.lastChild : this.getRoot().lastChild;
},
/**
* 返回節(jié)點(diǎn)的下一個(gè)節(jié)點(diǎn),沒有參數(shù)則返回根節(jié)點(diǎn)的第一個(gè)子節(jié)點(diǎn)
* @param {Object} node
* @return {Object} 節(jié)點(diǎn)的下一個(gè)節(jié)點(diǎn)
*/
getNextNode : function (node) {
return node ? node.nextSibling : null;
},
/**
* 返回節(jié)點(diǎn)的上一個(gè)節(jié)點(diǎn),沒有參數(shù)則返回根節(jié)點(diǎn)的第一個(gè)子節(jié)點(diǎn)
* @param {Object} node
* @return {Object} 節(jié)點(diǎn)的上一個(gè)節(jié)點(diǎn)
*/
getPreviousNode : function (node) {
return node ? node.previousSibling : null;
},
/**
* 返回節(jié)點(diǎn)的子節(jié)點(diǎn),沒有參數(shù)則返回null
* @param {Object} node
* @return {Object} 節(jié)點(diǎn)所有子節(jié)點(diǎn)
*/
getChildNodes : function (node) {
return (node && this.hasChildNodes(node)) ? node.childNodes : null;
},
/**
* 返回節(jié)點(diǎn)的父節(jié)點(diǎn),沒有參數(shù)則返回null
* @param {Object} node
* @return {Object} 節(jié)點(diǎn)父節(jié)點(diǎn)
*/
getParentNode : function (node) {
return node ? node.parentNode : null;
},
/**
* 根據(jù)節(jié)點(diǎn)名返回節(jié)點(diǎn)數(shù)組文本值,參數(shù):
* @param {string或object} nodeName:節(jié)點(diǎn)名稱;
* @return {object} 節(jié)點(diǎn)存在返回節(jié)點(diǎn)數(shù)組;節(jié)點(diǎn)不存在則返回null。
*/
getNodesTextByName : function (nodeNames) {
return nodeNames ? (this.dataType == 'json' ? this.getJsonNodesTextByName(nodeNames) : this.getArryNodesTextByName(nodeNames)) : null;
},
/**
* 根據(jù)節(jié)點(diǎn)名返回節(jié)點(diǎn)普通數(shù)組文本值,參數(shù):
* @param {string或object} nodeName:節(jié)點(diǎn)名稱;
* @return {object} 節(jié)點(diǎn)存在返回節(jié)點(diǎn)普通數(shù)組。
*/
getArryNodesTextByName : function (nodeNames) {
var rs = [];
//返回普通數(shù)組格式
switch (typeof(nodeNames)) {
case 'string':
var nodes = this.getNodesByTagName(nodeNames);
for (var i = 0; i < nodes.length; i++) {
rs.push(nodes[i].text);
}
break;
case 'object':
var subRs;
var nodes;
for (var i = 0; i < nodeNames.length; i++) {
nodes = this.getNodesByTagName(nodeNames[i]);
subRs = [];
for (var j = 0; j < nodes.length; j++) {
subRs.push(nodes[j].text);
}
rs.push(subRs);
}
break;
}
return rs;
},
/**
* 根據(jù)節(jié)點(diǎn)名返回節(jié)點(diǎn)JSON數(shù)組文本值,參數(shù):
* @param {string或object} nodeName:節(jié)點(diǎn)名稱;
* @return {object} 節(jié)點(diǎn)存在返回節(jié)點(diǎn)JSON數(shù)組;節(jié)點(diǎn)不存在則返回null。
*/
getJsonNodesTextByName : function (nodeNames) {
var rs = null;
//返回JSON數(shù)組格式
switch (typeof(nodeNames)) {
case 'string':
eval('rs = {' + nodeNames + ':[]}');
var nodes = this.getNodesByTagName(nodeNames);
for (var i = 0; i < nodes.length; i++) {
eval('rs.' + nodeNames + '.push({' + nodeNames + i + ': nodes[i].text})');
}
break;
case 'object':
rs = {};
var nodes;
for (var i = 0; i < nodeNames.length; i++) {
eval('rs.' + nodeNames[i] + '=[]');
nodes = this.getNodesByTagName(nodeNames[i]);
for (var j = 0; j < nodes.length; j++) {
eval('rs.' + nodeNames[i] + '.push({' + nodeNames[i] + j + ': nodes[j].text})');
}
}
break;
}
return rs;
},
/**
* 根據(jù)節(jié)點(diǎn)屬性得到節(jié)點(diǎn),參數(shù):
* @param {String} key:屬性名,默認(rèn)是id
* @param {String} value:屬性值
* @return {String} 符合條件的節(jié)點(diǎn)數(shù)組。
*/
getNodesByAttribute : function (key, value) {
key = key ? key : 'id';
value = value ? value : '';
return id ? this.xmlDoc.getElementById(id) : null;
},
/**
* 根據(jù)節(jié)點(diǎn)名得到節(jié)點(diǎn),參數(shù):
* @param {string} tagName:節(jié)點(diǎn)名稱
* @return {string} 指定節(jié)點(diǎn)名字的和位置的節(jié)點(diǎn)或節(jié)點(diǎn)數(shù)組。
*/
getNodesByTagName : function (tagName) {
return tagName ? this.xmlDoc.getElementsByTagName(tagName) : null;
},
/** /** /** /** /** return node ? node.appendChild(childNode) : childNode; /** /** /** /** /** /** /** /** /** /** 聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
* 根據(jù)節(jié)點(diǎn)路徑返回第index個(gè)節(jié)點(diǎn),參數(shù):
* @param {string} xPath:節(jié)點(diǎn)路徑
* @param {number}index:要索引的位置,為空或0則返回所有查找到的節(jié)點(diǎn)。
* @return {string} 指定節(jié)點(diǎn)名字的和位置的節(jié)點(diǎn)或節(jié)點(diǎn)數(shù)組。
*/
getNodesByXpath : function (xPath, index) {
if (!xPath) return null;
var nodes = this.xmlDoc.selectNodes(xPath);
var len = nodes.length;
if(!index || index > len || index < 0) return nodes;
for(var i=0; i
}
},
* 得到指定節(jié)點(diǎn)文本,參數(shù):
* @param {object} node:節(jié)點(diǎn)
* @return {string} 節(jié)點(diǎn)文本,為空則返回null
*/
getText : function (node) {
return node ? node.text : null;
},
* 得到指定節(jié)點(diǎn)名稱,參數(shù):
* @param {object} node:節(jié)點(diǎn)
* @return {string} 節(jié)點(diǎn)名稱,為空則返回null
*/
getTagName : function (node) {
return node ? node.nodeName : null;
},
* 返回節(jié)點(diǎn)類型,參數(shù):
* @param {object} node:節(jié)點(diǎn)
* @return {string} 節(jié)點(diǎn)類型,為空則返回null
* 1-element
* 2-attribute
* 3-text
* 4-cdata
* 5-entity reference
* 6-entity
* 7-pi (processing instruction)
* 8-comment
* 9-document
* 10-document type
* 11-document fragment
* 12-notation
*/
getNodeType : function (node) {
return node ? node.nodeType : null;
},
* 創(chuàng)建節(jié)點(diǎn),參數(shù):
* @param {string} nodeName:節(jié)點(diǎn)名稱,必填
* @param {string} text:節(jié)點(diǎn)文本,可為空
* @param {Object} attributes:屬性值-JSON數(shù)組,可為空,例:{id:'id001',name:'name001'}
* @param {Object} node:要增加子節(jié)點(diǎn)的節(jié)點(diǎn),為空則返回新建的節(jié)點(diǎn)
* @param {Boolean} cdata:是否生成帶有CDATA區(qū)段的節(jié)點(diǎn),true:生成,false:不生成
* @return {Object} 創(chuàng)建的節(jié)點(diǎn),有異常則返回null
*/
createNode: function(nodeName, text, attributes, node, cdata) {
if (this.isIE) {
//創(chuàng)建子接點(diǎn)
var childNode = this.xmlDoc.createElement(nodeName);
//創(chuàng)建文本節(jié)點(diǎn)
var textNode = cdata == true ? this.xmlDoc.createCDATASection(text) : this.xmlDoc.createTextNode(text);
childNode.appendChild(textNode);
//添加屬性
for (var i in attributes) {
this.createAttribute(childNode,i,attributes[i]);
};
} else {
alert('FF創(chuàng)建節(jié)點(diǎn)再說(shuō).');
return null;
}
},
* 創(chuàng)建帶CDATA區(qū)段的節(jié)點(diǎn),參數(shù):
* @param {string} nodeName:節(jié)點(diǎn)名稱,必填
* @param {string} text:節(jié)點(diǎn)文本,可為空
* @param {Object} attributes:屬性值-JSON數(shù)組,可為空,例:{id:'id001',name:'name001'}
* @param {Object} node:要增加子節(jié)點(diǎn)的節(jié)點(diǎn),為空則返回新建的節(jié)點(diǎn)
*/
createCDATANode: function(nodeName, text, attributes, node) {
this.createNode(nodeName, text, attributes, node, true);
},
* 創(chuàng)建節(jié)點(diǎn)屬性,參數(shù):
* @param {Object} node:節(jié)點(diǎn),必填
* @param {String} key:屬性名,必填
* @param {Object} value:屬性值,必填
* @param {Object} node:返回新增屬性的節(jié)點(diǎn)
* @return {Object} 增加屬性的節(jié)點(diǎn),有異常則返回null
*/
createAttribute: function(node, key, value) {
if (this.isIE) {
if(!key) return;
var attr = this.xmlDoc.createAttribute(key);
attr.value = value ? value : "";
node.setAttributeNode(attr);
return node;
} else {
alert('FF創(chuàng)建節(jié)點(diǎn)再說(shuō).');
return node;
}
return null;
},
* 把節(jié)點(diǎn)加到根節(jié)點(diǎn)上,參數(shù):
* @param {Object} node:節(jié)點(diǎn)
* @return {Object} 有異常則返回null
*/
addNodeToRoot: function(node) {
if(!node) return null;
this.getRoot().appendChild(node);
return node;
},
* 把節(jié)點(diǎn)加到另外節(jié)點(diǎn)上,參數(shù):
* @param {Object} node:節(jié)點(diǎn)
*/
addNode: function(node,childNode) {
return (node && childNode) ? node.appendChild(childNode) : false;
},
* 從父節(jié)點(diǎn)移除節(jié)點(diǎn)自身,參數(shù):
* @param {Object} newNode:要替換的節(jié)點(diǎn)
* @param {Object} oldNode:要被替換的節(jié)點(diǎn)
*/
replaceChild: function(newNode, oldNode) {
var parentNode = oldNode.parentNode;
if(!newNode || !oldNode || !parentNode) return;
parentNode.replaceChild(newNode, oldNode);
},
* 從父節(jié)點(diǎn)移除節(jié)點(diǎn)自身,參數(shù):
* @param {Object} node:要移除的節(jié)點(diǎn)
*/
removeChild: function(node) {
if(!node || !node.parentNode) return;
node.parentNode.removeChild(node);
},
* 移除節(jié)點(diǎn)的所有子節(jié)點(diǎn),參數(shù):
* @param {Object} node:父節(jié)點(diǎn)
*/
removeChildNodes: function(node) {
if (node && this.hasChildNodes(node)) {
var childNodes = node.childNodes;
for(var i = 0; i < childNodes.length; i++) {
node.removeChild(childNodes[0]);
}
}
},
* 設(shè)置節(jié)點(diǎn)屬性值,不存在則新建,參數(shù):
* @param {Object} node:要設(shè)置的節(jié)點(diǎn)
* @param {String} key:要設(shè)置的屬性名
* @param {String} value:要設(shè)置的屬性值
*/
setAttribute: function(node, key, value) {
this.createAttribute(node, key, value);
},
* 設(shè)置文本節(jié)點(diǎn)的文本,參數(shù):
* @param {Object} node:要設(shè)置的節(jié)點(diǎn)
* @param {String} text:要設(shè)置的文本
*/
setText: function(node, text) {
if(this.isTextNode(node)) node.text = text;
},
* 在文本節(jié)點(diǎn)后面追加文本,參數(shù):
* @param {Object} node:要設(shè)置的節(jié)點(diǎn)
* @param {String} text:要設(shè)置的文本
*/
appendText: function(node, text) {
if(this.isTextNode(node)) node.appendData(text);
},
/**
* 輸出xml,為空則輸出根節(jié)點(diǎn)文本,參數(shù):
* @param {Object} node:要輸出的節(jié)點(diǎn)
*/
toString: function(node) {
node = node ? node : this.xmlDoc.documentElement;
if (typeof node == 'string') return node;
return this.isIE ? node.xml : new XMLSerializer().serializeToString(node);
}
}
測(cè)試的xml文件(book.xml):
代碼如下:
吳承恩
曹雪芹
羅貫中
html code (test.html):
代碼如下: