xml简明教程第3课 处理xml数据岛

  • 作者:未知 来源:未知 添加时间:2006年7月3日 字体:

  • 什么是xml数据岛@ 
    数据岛是指存在于html页面中的xml代码。数据岛允许你在html页面中集成xml,对xml编 
    写脚本,而不需要通过脚本或<object>标签读取xml。几乎所有能够存在于一个结构完整 
    的xml文档中的东西都能存在于一个数据岛中。包括处理指示、doctype声明和内部子集 
    。(注意,编码串不能放在数据岛中。) 
    <xml>元素标记数据岛的开始,它的id属性提供了一个可以用来引用数据岛的名称。 
    数据岛的xml可以是内嵌的: 
    <xml id="xmlid"> 
       <customer> 
          <name>herbert hanley</name> 
          <custid>81422</custid> 
       </customer> 

    </xml> 
    或者在xml标签中通过src属性引用: 
    <xml id="xmlid" src="http://www.1fanwen.com/customer.xml"></xml> 
    也可以使用<script>标签来创建一个数据岛: 
     <script language="xml" id="xmlid"> 
      <customer> 
        <name>mark hanson</name> 
        <custid>81422</custid> 
      </customer> 
    </script> 

  • 上一篇:xml简明教程第5课:使用xml名域
  • 下一篇:xml简明教程第2课: 处理xml文档
  • 最后更新时间:2024年12月22日
  • 返回页面顶端
ppdesk