XML:在同一文件中的另一个标记中使用一个标记的文本

时间:2016-05-26 11:08:04

标签: xml

是否可以在同一XML文件中的另一个标记内的一个标记下使用该文本(例如,通过标记名称,或者通过JavaScript)?

我会感激任何想法!

1 个答案:

答案 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>