1
如何將html文件包含在xml文件中,而不是html代碼而是例如html文件。在XML文件中包含somthing.html
something.xml
<question_passage>
include href="../information/something.html"
</question_passage>
something.html
<div>
some code
</div>
的原因,我需要做的,這是因爲生病被一遍又一遍地及其使用something.html文本內容更容易引用一個反覆複製文本的文件。它可以是.text文件而不是.html,因爲它只是文本。 謝謝。
我已經試過
XML文件
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE doc [<!ENTITY testSYSTEM "path/test.html">]>
<test>
&test;
</test>
好的,謝謝你看着它+1 –