没有搜到到结果?点击这里求解答/求资源。
【单选题】
XSL文档本身也是xml文档,其后缀名为()。

xml
xsl
xsd
dtd
【判断题】
如果需要用样式单来表现当前XML文档,则需在XML文档第二行插入处理指令,例如:

正确
错误
【单选题】
union类型:假设Schema名字空间前缀为“xsd”,现在需要定义名为“contactType”简单类型,要求取值为"phoneType"类型或“emailType”类型,下面正确选项是()。

xsd:simpleTypename="contactType"xsd:unionunionType="phoneType"//xsd:simpleType
xsd:simpleTypename="contactType"xsd:unionunionType="phoneTypeemailType"//xsd:simpleType
xsd:simpleTypename="contactType"xsd:unionmemberType="phoneType"//xsd:simpleType
xsd:simpleTypename="contactType"xsd:unionmemberType="phoneTypeemailType"//xsd:simpleType
【判断题】
在匹配模式,需要事先定义模板,其语法为:xsl:templatematch=""name=""mode=""priority="",其中match属性值为XPath表达式,表示该模板XML文档何种元素匹配。

正确
错误
【多选题】
schema定义元素内容可以有如下形式()。

元素
混合内容
只有属性
只有文本内容
【单选题】
在利用CSS表现XML时,需要将XML文档preface元素内容以独立段落方式显示,下面正确选项是()。

preface{display:list-item}
preface{display:block}
preface{display:inline}
preface{display:none}
【单选题】
xsl文档元素为()。

stylesheet
xml-stylesheet
schema
xml
【多选题】
模式限制:假设Schema名字空间前缀为“xsd”,现在需要定义名为“phoneType”简单类型,在“string”类型基础上增加模式限制,要求是手机号码,下面正确选项是()。

xsd:simpleTypename="phoneType"xsd:restrictionbase="xsd:string"xsd:patternvalue="[0,9]{11}"//xsd:restriction/xsd:simpleType
xsd:simpleTypename="phoneType"xsd:restrictionbase="xsd:string"xsd:patternvalue="[0,9]{11}+"//xsd:restriction/xsd:simpleType
xsd:simpleTypename="phoneType"xsd:restrictionbase="xsd:string"xsd:patternvalue="[0,9]{11}?"//xsd:restriction/xsd:simpleType
xsd:simpleTypename="phoneType"xsd:restrictionbase="xsd:string"xsd:patternvalue="[0-9]{11}"//xsd:restriction/xsd:simpleType
【单选题】
武汉为应对新冠疫情推出移动医疗空间名字是( )

【判断题】
在利用CSS表现XML时,如果需要设置xml元素多个背景属性,可以利用简略属性“background”一次进行设置,多个属性值之间用空格分开。

正确
错误