我有 2 个 xml 文件:
文件1:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="../helpproject.xsl" ?>
<topic template="Default" lasteditedby="fjuras" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../helpproject.xsd">
<body>
<para><text>Enter the </text><lang>button1</lang><text>by tapping the list icon</text></para>
</body>
</topic>
文件2:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<language id="lang.main" name="English (British)" iso="GBR" langIso="ENG" charset="roman" charsetSpecial="special" usingCJK="no" R2L="no">
<lang id="button1" text="Menu"/>
</language>
我的问题是我想用 file2 中的 Menu 替换 file1 中的 button1。我必须这样做,因为 file2 中的名称发生了很大变化,但 ids 保持不变。我无法修改文件 helpproject.xsl。该文件是最终的样式表。我想在显示内容之前进行此修改。我想这样做,或者直接在file1中写一些东西,或者制作一些新的外部xsl文件来做到这一点。如果有任何可能这样做,请回复我,因为我现在不知道如何做到这一点。
非常感谢。