新书推介:《语义网技术体系》
作者:瞿裕忠,胡伟,程龚
   >>中国XML论坛<<     W3CHINA.ORG讨论区     计算机科学论坛     SOAChina论坛     Blog     开放翻译计划     新浪微博  
 
  • 首页
  • 登录
  • 注册
  • 软件下载
  • 资料下载
  • 核心成员
  • 帮助
  •   Add to Google

    >> 本版讨论XSL,XSLT,XSL-FO,CSS等技术
    [返回] 中文XML论坛 - 专业的XML技术讨论区XML.ORG.CN讨论区 - XML技术『 XSL/XSLT/XSL-FO/CSS 』 → [求助]新人求助如何用xslt 去显示有schema 的 xml 请各位教教小第!!! 查看新帖用户列表

      发表一个新主题  发表一个新投票  回复主题  (订阅本版) 您是本帖的第 2742 个阅读者浏览上一篇主题  刷新本主题   树形显示贴子 浏览下一篇主题
     * 贴子主题: [求助]新人求助如何用xslt 去显示有schema 的 xml 请各位教教小第!!! 举报  打印  推荐  IE收藏夹 
       本主题类别:     
     philipfu 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:0
      积分:52
      门派:XML.ORG.CN
      注册:2007/9/1

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给philipfu发送一个短消息 把philipfu加入好友 查看philipfu的个人资料 搜索philipfu在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 引用回复这个贴子 回复这个贴子 查看philipfu的博客楼主
    发贴心情 [求助]新人求助如何用xslt 去显示有schema 的 xml 请各位教教小第!!!

    请各位教教小第! 如何用xslt 去显示有schema 的 xml 。
    我用vs 2005 做了xml, xslt 同 schema file , 但不能显示到xslt资料(table , css )。

    ///-------------------students.xml-------------------------------//////
    <?xml version="1.0" encoding="utf-8"?>
    <?xml-stylesheet type="text/xsl" href="students.xsl"?>
    <students xmlns="http://www.w3schools.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xsi:noNamespaceSchemaLocation="students.xsd">
       <student>
          <firstname>Chung Ting</firstname>
          <lastname>Au Yeung</lastname>
          <ulid>ctauyeung</ulid>
          <account>xn352104</account>
          <class>SENIOR</class>
       </student>
       <student>
          <firstname>Ho Ting</firstname>
          <lastname>Chan</lastname>
          <ulid>htchan</ulid>
          <account>xn352111</account>
          <class>JENIOR</class>
       </student>
    </students>
    ///-------------------------students.xsd------------------------------------///
    <?xml version="1.0" encoding="utf-8"?>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:element name="students">
        <xs:complexType>
          <xs:sequence>
            <xs:element maxOccurs="unbounded" name="student">
              <xs:complexType>
                <xs:sequence>
                  <xs:element name="firstname" type="xs:string" />
                  <xs:element name="lastname" type="xs:string" />
                  <xs:element name="ulid" type="xs:string" />
                  <xs:element name="account" type="xs:string" />
                  <xs:element name="class" type="xs:string" />
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:schema>

    //---------------------------students.xsl---------------------------------///
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema">
        <xsl output method="html" encoding="utf-8" indent="no"/>
    <!--<xsl:import-schema schema-location="students.xsd"/>-->
    <xsl:template match="xs:element[@name='students']">
        <html>
      <body>
        <table cellspacing="0">
          <tr bgcolor="#FFFFFF">
            <th>FIRSTNAME</th>
            <th>LASTNAME</th>
            <th>ULID</th>
            <th>ACCOUNT</th>
            <th>CLASS</th>
          </tr>
          <xsl:for-each select="xs:element[@name='student']">
            <xsl:sort select="class"/>
            <xsl:variable name="pos" select="position() mod 2"/>
            <xsl:if test="$pos=1">
              <tr bgcolor="#dddddd">
                <td>
                  <xsl:value-of select="xs:firstname"/>
                </td>
                <td>
                  <xsl:value-of select="xs:lastname"/>
                </td>
                <td>
                  <xsl:value-of select="xs:ulid"/>
                </td>
                <td>
                  <xsl:value-of select="xs:account"/>
                </td>
                <td>
                  <xsl:value-of select="xs:class"/>
                </td>
              </tr>
            </xsl:if>
            <xsl:if test="$pos=0">
              <tr>
                <td>
                  <xsl:value-of select="xs:firstname"/>
                </td>
                <td>
                  <xsl:value-of select="xs:lastname"/>
                </td>
                <td>
                  <xsl:value-of select="xs:ulid"/>
                </td>
                <td>
                  <xsl:value-of select="xs:account"/>
                </td>
                <td>
                  <xsl:value-of select="xs:class"/>
                </td>
              </tr>
            </xsl:if>
          </xsl:for-each>
        </table>
      </body>
      </html>
    </xsl:template>
    </xsl:stylesheet>


       收藏   分享  
    顶(0)
      




    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2007/9/1 11:40:00
     
     GoogleAdSense
      
      
      等级:大一新生
      文章:1
      积分:50
      门派:无门无派
      院校:未填写
      注册:2007-01-01
    给Google AdSense发送一个短消息 把Google AdSense加入好友 查看Google AdSense的个人资料 搜索Google AdSense在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 访问Google AdSense的主页 引用回复这个贴子 回复这个贴子 查看Google AdSense的博客广告
    2024/11/1 1:33:54

    本主题贴数1,分页: [1]

    管理选项修改tag | 锁定 | 解锁 | 提升 | 删除 | 移动 | 固顶 | 总固顶 | 奖励 | 惩罚 | 发布公告
    W3C Contributing Supporter! W 3 C h i n a ( since 2003 ) 旗 下 站 点
    苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
    62.988ms