网站地图    收藏   

主页 > 前端 > css教程 >

scheam中的<anyAttribute>元素 - html/css语言栏目:

来源:自学PHP网    时间:2015-04-14 14:51 作者: 阅读:

[导读] [html]?xml version=1 0 encoding=UTF-8? xsi:schema xmlns:xsi=http: www w3 org 2001 XMLSchema targetNamespace=http: www w3 org xmlns:tns=http: www w3 org elementFormDefa...

[html
<?xml version="1.0" encoding="UTF-8"?>  
<xsi:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.w3.org/"  
    xmlns:tns="http://www.w3.org/" elementFormDefault="qualified">  
    <xsi:element name="persons">  
      
    </xsi:element>  
</xsi:schema>  
 
[html]  
<?xml version="1.0" encoding="UTF-8"?>  
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"  
    targetNamespace="http://www.example.org/family" xmlns:tns="http://www.example.org/family"  
    elementFormDefault="qualified">  
    <xs:element name="person">  
        <xs:complexType>  
            <xs:sequence>  
                <xs:element name="firstname" type="xs:string"></xs:element>  
                <xs:element name="lastname" type="xs:string"></xs:element>  
            </xs:sequence>  
            <xs:anyAttribute/><!-- <anyAttribute> 元素使我们有能力通过未被 schema 规定的属性来扩展XML文档! -->  
        </xs:complexType>  
    </xs:element>  
</xs:schema>  
 
[html]  
<?xml version="1.0" encoding="UTF-8"?>  
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"  
    targetNamespace="http://www.example.org/children" xmlns:tns="http://www.example.org/children"  
    elementFormDefault="qualified">  
    <xs:attribute name="sex"><!-- 创建属性名称为sex的属性 -->  
        <xs:simpleType>  
            <xs:restriction base="xs:string"><!-- 创建的约束条件 -->  
                <xs:enumeration value="男"></xs:enumeration><!-- 规定属性值得范围 -->  
                <xs:enumeration value="女"></xs:enumeration>  
            </xs:restriction>  
        </xs:simpleType>  
    </xs:attribute>  
</xs:schema>  
 
[html]  
<?xml version="1.0" encoding="UTF-8"?>  
<persons xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
    xmlns="http://www.w3.org" xmlns:fm="http://www.example.org/family"  
    xmlns:ch="http://www.example.org/children"  
    xsi:schemaLocation="http://www.w3.org per.xsd http://www.example.org/family family.xsd http://www.example.org/children children.xsd">  
    <fm:person ch:sex="男">  
        <fm:firstname></fm:firstname>  
        <fm:lastname></fm:lastname>  
    </fm:person>  
    <fm:person ch:sex="女">  
        <fm:firstname></fm:firstname>  
        <fm:lastname></fm:lastname>  
    </fm:person>  
</persons>  
 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论