我正在使用XML类来解析XML字符串。我想将解析后的XML插入到文本框中。实现这个目标的正确方法是什么?
我的代码:
var myXML = new XML( '<?xml version="1.0" encoding="UTF-8"?><root><myText>Hello World</myText></root>' );
app.selection[0].placeXML( myXML );
// app.selection[0].placeXML( myXML.elements()[0] );
生成错误30477:
Invalid value for parameter 'using' of method 'placeXML'. Expected XMLElement, but received nothing.