以文本方式查看主题 - 中文XML论坛 - 专业的XML技术讨论区 (http://bbs.xml.org.cn/index.asp) -- 『 XSL/XSLT/XSL-FO/CSS 』 (http://bbs.xml.org.cn/list.asp?boardid=8) ---- 请教! (http://bbs.xml.org.cn/dispbbs.asp?boardid=8&rootid=&id=7007) |
-- 作者:Cindylm -- 发布时间:4/25/2004 8:42:00 PM -- 请教! |
-- 作者:Cindylm -- 发布时间:4/25/2004 8:47:00 PM -- 如果一个xml里有如下代码: <button> <name>button1</name> <value>提交</value> <type>submit</type> </button> 用xsl翻译成html: <xsl:template match="button"> <input name="./name!value()" value="./value!value()" type="./type!value()"> </xsl:template> 结果不对,应该怎么做呢? 对于这种类型的要在标签里嵌入值的该怎么做的,请赐教! |
-- 作者:Flash2004 -- 发布时间:4/26/2004 6:46:00 PM -- <xsl:template match="button"> <input > <xsl:attribute name="name"><xsl:value-of select="name" /></xsl:attribute> <xsl:attribute name="value"><xsl:value-of select="value" /></xsl:attribute> <xsl:attribute name="type"><xsl:value-of select="type" /></xsl:attribute> </input> </xsl:template> |
W 3 C h i n a ( since 2003 ) 旗 下 站 点 苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》 |
47.119ms |