是否可以在同一XML文件中的另一个标记内的一个标记下使用该文本(例如,通过标记名称,或者通过JavaScript)?
我会感激任何想法!
答案 0 :(得分:2)
您可以定义 internal entity ,并在XML文档的多个位置重复使用它:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE r [
<!ENTITY ReuseMe "This text is defined in a single location.">
]>
<r>
<here>&ReuseMe;</here>
<there>&ReuseMe;</there>
</r>