xml 中 nodeValue 的用意

xml在flash中的nodeValue,是返回节点值,先看下帮助. nodeValue是取得 文字节点的值,而文字节点就是一个不包含任何其它节点的元素. (关于文字节点可以查看帮助XML中nodeName , nodeType , nodeValue)3个部分 虽然一般情况下,直接取文字节点和取该文字节点的值是等同的.也就是说下面代码显示的是同样的东西
// xml code
<?xml version="1.0"?>
<root>
Welcome to HBBlog!
</root>
// flash code
var txt_xml:XML = new XML();
txt_xml.ignoreWhite = true;
txt_xml.onLoad = function(success) {
if (success) {
root= txt_xml.firstChild.firstChild;
trace(root); // Welcome to HBBlog!
rootValue = root.nodeValue;
trace(rootValue); // Welcome to HBBlog!
trace(root == rootValue) // false
}
};
txt_xml.load("txt.xml");

从检测root==rootValue为输出为false看到root和rootValue其实是不相同的. 他们之间的区别,就我现在认为,不使用nodeValue,xml就会把这个文字节点原模原样的返回给flash.即使其中含有转义字符"&lt;","&gt;"等等..再看下面的代码
// xml code
<?xml version="1.0"?>
<root>
Welcome to &lt;HBBlog&gt;!
</root>
// flash code
var txt_xml:XML = new XML();
txt_xml.ignoreWhite = true;
txt_xml.onLoad = function(success) {
if (success) {
root= txt_xml.firstChild.firstChild;
trace(root); // Welcome to &lt;HBBlog!&gt;
rootValue = root.nodeValue;
trace(rootValue); // Welcome to <HBBlog!>
trace(root == rootValue) // false
}
};
txt_xml.load("txt.xml");

现在明白了吧 :)
用nodeValue就可以识别出包含在xml中的转义字符
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值