0
有誰知道是否有辦法在ActionScript中檢索具有特定屬性的XML子元素的索引?如何在AS3中檢索具有特定屬性的XML元素的索引?
說...
[email protected] //index of
我嘗試使用方法是這樣的:
[email protected]()
但它返回-1
。
有誰知道是否有辦法在ActionScript中檢索具有特定屬性的XML子元素的索引?如何在AS3中檢索具有特定屬性的XML元素的索引?
說...
[email protected] //index of
我嘗試使用方法是這樣的:
[email protected]()
但它返回-1
。
使用hasOwnProperty方法爲我工作:
foo.child.(hasOwnProperty("@attribute")).childIndex()
但如果與@attribute
元素是不是唯一的,那麼正確的代碼是:
foo.child.(hasOwnProperty("@attribute"))[0].childIndex()
工作就像一個魅力。謝謝您的幫助。 – Pori