以文本方式查看主题

-  中文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=7120)


--  作者:jinshunji
--  发布时间:4/29/2004 1:13:00 PM

--  请帮帮菜鸟好吗?
请问一下我写的对吗?为什么游览器什么都不显示啊?
XML:<?xml version="1.0" encoding="gb2312" ?>
<?xml-stylesheet type="text/xsl" href="boxedcontext.xsl" ?>
<products>
  <product>办公室圆桌</product>
  <product>老花眼镜</product>
  <product>家用弹簧秤</product>
  <product>手提电脑包</product>
  <product>电视天线</product>
  <product>智力拼图</product>
  <product>绘图工具</product>
  <product>硬面笔记本</product>
  <product>农场机械</product>
  <product>玩具小丑</product>
  <product>潜水装备</product>
</products>
XSL:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="products">
   <html>
   <head>
        <title>biaoge</title>
   </head>
   <body>
       <table border="1">
        <tr>
        <td><xsl:apply-templates select="product"/></td>
        </tr>
        </table>
   </body>
   </html>
   </xsl:template>
        <xsl:template match="product">
        <xsl:value-of select="."/>
        </xsl:template>
   </xsl:stylesheet>
麻烦各位了谢谢
--  作者:sam
--  发布时间:4/29/2004 1:56:00 PM

--  
以下是引用jinshunji在2004-4-29 13:13:27的发言:
请问一下我写的对吗?为什么游览器什么都不显示啊?
XML:<?xml version="1.0" encoding="gb2312" ?>
<?xml-stylesheet type="text/xsl" href="boxedcontext.xsl" ?>
<products>
   <product>办公室圆桌</product>
   <product>老花眼镜</product>
   <product>家用弹簧秤</product>
   <product>手提电脑包</product>
   <product>电视天线</product>
   <product>智力拼图</product>
   <product>绘图工具</product>
   <product>硬面笔记本</product>
   <product>农场机械</product>
   <product>玩具小丑</product>
   <product>潜水装备</product>
</products>
XSL:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

<xsl:template match="/">
 <xsl:apply-templates select="products"/>
</xsl:template>

<xsl:template match="products">
    <html>
    <head>
         <title>biaoge</title>
    </head>
    <body>
        <table border="1">
         <tr>
         <td><xsl:apply-templates select="product"/></td>
         </tr>
         </table>
    </body>
    </html>
    </xsl:template>
         <xsl:template match="product">
         <xsl:value-of select="."/>
         </xsl:template>
    </xsl:stylesheet>
麻烦各位了谢谢


--  作者:jinshunji
--  发布时间:4/29/2004 3:02:00 PM

--  
可是它不显示内容为什么哥哥,请告诉我啊谢谢!
--  作者:robert
--  发布时间:4/29/2004 3:30:00 PM

--  
sam帮你该的是对的,我可以正常显示啊
--  作者:jinshunji
--  发布时间:4/30/2004 2:39:00 PM

--  
我说的是我定义的XML里面的内容,谢谢哥哥们帮我哈
W 3 C h i n a ( since 2003 ) 旗 下 站 点
苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
46.997ms