为什么没有这一行:
apply-templates select="*/*
(在 XSLT 文件中的“shop”元素下)
将粗体格式应用于Blake2
? 输出如下所示:
XSLT 中 root 的开始
“第 1 步开始” Alexis(任务:销售) Employee2(任务:) Blake2 “第 1 步完成”
XSLT 中根的结尾
我的问题是,为什么不是Blake2
粗体?它在<employee>
元素之下。
将该行更改为*apply-templates select="*"
粗体Blake2
。是什么让这与众不同?
这是 XML 文件:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="2.xsl" ?>
<root>
<shop>
<person>
<employee>
<name> Alexis </name>
<role> Manager </role>
<task> Sales </task>
</employee>
<employee>
<name> Employee2 </name>
</employee>
</person>
<employee>
<name> Blake2 </name>
</employee>
</shop>
</root>
这是 XSLT 文件:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="root">
<html><head></head>
<body>
Start of root in XSLT <p/> <xsl:apply-templates /> <p/>
End of root in XSLT
</body>
</html>
</xsl:template>
<xsl:template match="shop">
"Step 1 start"
<xsl:apply-templates select="*/*"/>
"Step 1 done" <p/>
</xsl:template>
<xsl:template match="employee">
<b> <xsl:apply-templates select="name"/> </b>
(Task: <xsl:apply-templates select="task"/>)
<br></br>
</xsl:template>
</xsl:stylesheet>