codecamp

XML Schema include 元素

XML Schema include 元素


XML Schema 参考手册 完整 XML Schema 参考手册

定义和用法

include 元素用于向一个文档添加带有相同目标命名空间的多个 schema。

元素信息

  • 父元素: schema

语法

<include
id=ID
schemaLocation=anyURI
any attributes
>

(annotation?)

</include>

(? 符号声明在 include 元素中,该元素可出现零次或一次。)

属性 描述
id 可选。规定该元素的唯一的 ID。
schemaLocation 必需。规定在包含 schema 的目标命名空间中,要包括的 schema 的 URI。
any attributes 可选。规定带有 non-schema 命名空间的任何其他属性。

实例 1

通过被包括的 schema,被包括的文件必须全部引用相同的目标命名空间。如果 schema 目标命名空间不匹配,则包括不会有效:

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="//www.w3cschool.cn/schema">

<xs:include schemaLocation="//www.w3cschool.cn/schema/customer.xsd"/>
<xs:include schemaLocation="//www.w3cschool.cn/schema/company.xsd"/>

..

..

..

</xs:schema>


XML Schema 参考手册 完整 XML Schema 参考手册
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }