Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 xsl 在 HTML 中显示一些带有删除线的文本。
<xsl:text>Hello world</xsl:text>
预期输出:Hello world
有什么建议么 ?
恐怕我目前无法测试其中任何一个,但也许:
<strike><xsl:text>Hello world</xsl:text></strike>
或者
<fo:inline text-decoration="line-through"><xsl:text>Hello world</xsl:Text></fo:inline>
希望其中一个对你有用!