如何将 <?xml-stylesheet 添加到 QDomDocument?
How to add <?xml-stylesheet to QDomDocument?
我用 QDomDocument class 创建了一个 xml 文档。现在我想添加一个link到一个style-sheet。 QDomDocument 可以吗?
我无法在文档中找到它的方法。
根据 API 文档,document.insertBefore(document.createProcessingInstruction("xml-stylesheet", "type='text/xsl' href='sheet.xsl'"), document.documentElement())
应该可以。
我用 QDomDocument class 创建了一个 xml 文档。现在我想添加一个link到一个style-sheet。 QDomDocument 可以吗?
我无法在文档中找到它的方法。
根据 API 文档,document.insertBefore(document.createProcessingInstruction("xml-stylesheet", "type='text/xsl' href='sheet.xsl'"), document.documentElement())
应该可以。