ActionScript 3 检查XML属性是否存在

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 检查XML属性是否存在相关的知识,希望对你有一定的参考价值。

Usage 1:

var hasAttribute:Boolean = node.hasOwnProperty("@myAttribute");


Usage 2:

var myList:XMLList = myXML.node.( hasOwnProperty( "@myAttribute" ) );


Usage 3:

if ("@myAttribute" in node) { ... }

以上是关于ActionScript 3 检查XML属性是否存在的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 检查是否存在Class Definiton

ActionScript 3 检查项目是否已存在于数组中

ActionScript 3 AS3 - 检查字符串是否为true / false

ActionScript 3 AS3检查两个不同阵列中的所有值是否相同

未在加载函数之外保存的数组 - ActionScript 3 和 XML

ActionScript 3 AS3检查字符串以查看它是否是有效的电子邮件格式