A.< xs:element name="decimals">< xs:simpleType>< xs:restriction base="xs:decimal">< xs:minInclusive value="-3.0"/>< xs:maxInclusive value="8.6"/>< /xs:restriction>< /xs:simpleType>< /xs:element>
B.< xs:element name="decimals">< xs:simpleType>< xs:union itemType="xs:decimal">< /xs:simpleType>< /xs:element>
C.< xs:element name="decimals">< xs:simpleType>< xs:list itemType="xs:decimal">< /xs:simpleType>< /xs:element>
D.< xs:element name="decimals">< xs:simpleType>< xs:all itemType="xs:decimal">< /xs:simpleType>< /xs:element>
您可能感興趣的試卷
你可能感興趣的試題
A.< xsl:value-of>
B.< xsl:count>
C.< xsl:sum>
D.< xsl:variable>
Report.xml中包含subject 元素,該元素可以包含某HTML 標(biāo)記,如下:
< subject>
< b>2008年< /b>< i>北京奧運會< i>展望
< /subject>
現(xiàn)需要編寫一個XML schema來定義該xml文檔內(nèi)容的結(jié)構(gòu),以下的schema片斷中,()可以使Report.xml通過有效性驗證。
A.<xsd:element name="subject"><xsd:complexType mixed="true"><xsd:all><xsd:element name="i"minOccurs="0"maxOccurs="unbounded"type="xsd:string"/><xsd:element name="b"minOccurs="0"maxOccurs="unbounded"ty
B.<xsd:element name="subject"type="xsd:string"/>
C.<xsd:element name="subject"type="xsd:anyType"/>
D.<xsd:element name="subject"><xsd:complexType mixed="true"><xsd:sequence><xsd:element name="i"minOccurs="0"maxOccurs="unbounded"type="xsd:string"/><xsd:element name="b"minOccurs="0"maxOccurs="unbounded"
<stuList>
<student id="a001">
<name>jack<name>
<age>22</age>
</student>
<student id="a002">
<name>make<name>
<age>23</age>
</student>
</stuList>
查找id=’a002’的xpath表達(dá)式是()。
A.//name[.=’a002’]
B.//name[@id]/age=’22’
C.//name[@id=’a002’]
D.stuList/child::*[2]
<roster><student ID="s101">;
<name>;李華<;/name>;
<sex>;男<;/sex>;
<birthday>;1978.9.12<;/birthday>;
<score>;92<;/score>;
</student>;
<student ID="s102">;
<name>;齊輝<;/name>;
<sex>;女<;/sex>;
<birthday>;1979.3.2<;/birthday>;
<score>;90<;/score>;
</student>;
</roster>;
針對上述XML代碼,輸出ID為s102的學(xué)生的姓名的XSL片段正確的是()。
A.<xsl:template match="/roster"><xsl:value-of select=".[@ID=’s102’]/name"/></xsl:template>
B.<xsl:template match="/roster"><xsl:value-of select="student[@ID=’s102’]/name"/></xsl:template>
C.<xsl:template match="/roster"><xsl:value-of select="[student@ID=’s102’]/name"/></xsl:template>
D.<xsl:template match="/"><xsl:value-of select="student[@ID=’s102’]/name"/></xsl:template>
<customer_summary
xmlns:addr="http://www.xyz.com/addresses/"
xmlns:books="http://www.zyx.com/books/"
>
<addr:name><title>Mrs.</title></addr:name>
<books:title>Lord of the Rings</books:title>
上述是一段關(guān)于XML命名空間的實例片段,以下說法錯誤的是()。
A.本例中,命名空間的前綴分別是addr、books
B.第一個< title>元素屬于addr 名稱空間,因為其父元素< addr:Name>屬于該名稱空間
C.名稱空間中定義的字符串必須是可以訪問的URL,比如:XML 解析器會到http://www.zyx.com/books/去搜索DTD 或schema
D.名稱空間的縮寫需要在定義之后才能使用
最新試題
若用DOM處理下面一段XML文檔,則下面的XML文檔中有()個對象。<book><author>tom</author><bookcode>12</bookcode></book>
下列選項中,提供了遍歷和搜索文檔樹的大部分方法的類是()。
<customer_summaryxmlns:addr="http://www.xyz.com/addresses/"xmlns:books="http://www.zyx.com/books/"><addr:name><title>Mrs.</title></addr:name><books:title>Lord of the Rings</books:title>上述是一段關(guān)于XML命名空間的實例片段,以下說法錯誤的是()。
下列方法中,用于獲取頁面中的所有的Cookie值的是()。
定義樣式表中的變量,使用的標(biāo)簽是()。
創(chuàng)建BeatutifulSoup對象時,默認(rèn)使用的解析器為Python標(biāo)準(zhǔn)庫。
下列文件中,哪個可以指定Scrapy項目中使用的管道?()
<stuList><student id="a001"><name>jack<name><age>22</age></student><student id="a002"><name>make<name><age>23</age></student></stuList>查找id=’a002’的xpath表達(dá)式是()。
<roster><student ID="s101">;<name>;李華<;/name>;<sex>;男<;/sex>;<birthday>;1978.9.12<;/birthday>;<score>;92<;/score>;</student>;<student ID="s102">;<name>;齊輝<;/name>;<sex>;女<;/sex>;<birthday>;1979.3.2<;/birthday>;<score>;90<;/score>;</student>;</roster>;針對上述XML代碼,輸出ID為s102的學(xué)生的姓名的XSL片段正確的是()。
下列選項中,用于表示bs4中的標(biāo)簽的類是()。