我用QDomDocument类创建了一个xml文档。现在我想添加一个样式表的链接。是否可以使用QDomDocument?
我无法在文档中找到它的方法。
答案 0 :(得分:1)
根据API文档,document.insertBefore(document.createProcessingInstruction("xml-stylesheet", "type='text/xsl' href='sheet.xsl'"), document.documentElement())
看起来应该这样做。