以文本方式查看主题 - 中文XML论坛 - 专业的XML技术讨论区 (http://bbs.xml.org.cn/index.asp) -- 『 XML基础 』 (http://bbs.xml.org.cn/list.asp?boardid=1) ---- 救命啊,救命啊,大家帮帮我啊 (http://bbs.xml.org.cn/dispbbs.asp?boardid=1&rootid=&id=6877) |
-- 作者:robert -- 发布时间:4/20/2004 10:25:00 AM -- 救命啊,救命啊,大家帮帮我啊 这个是a.xml <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="a.xsl"?> <robert> <COMPOSER xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://www.users.interport.net/~beand/"> Beth Anderson </COMPOSER> <FOOTNOTE xmlns:xlink="http://ww.w3.org/1999/xlink" xlink:type="simple" xlink:href="city.xml"> 7 </FOOTNOTE> <IMAGE xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="mylogo.gif" xlink:actuate="onLoad" xlink:show="embed"/> </robert> --------------------------------------------------------------------------------------------------- 这个是a.xslt <?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/REC-html40"> <xsl:template match="/"> <html> <body> <center> <h2>the notepad</h2> <table border="1"> <tr> <td>COMPOSER</td> <td>FOOTNOTE</td> <td>IMAGE</td> </tr> <tr> <td><xsl:value-of select="robert/COMPOSER"/></td> <td><xsl:value-of select="robert/FOOTNOTE"/></td> <td><xsl:value-of select="robert/IMAGE"/></td> </tr> </table> </center> </body> </html> </xsl:template> </xsl:stylesheet> |
W 3 C h i n a ( since 2003 ) 旗 下 站 点 苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》 |
1,015.625ms |