1. 程式人生 > >dtd ? 復雜元素的子元素出現次數 零次或一次

dtd ? 復雜元素的子元素出現次數 零次或一次

網站 src 如果 出現一次 珍惜 version .com 三字經 type

禮悟:
   好好學習多思考,尊師重道存感恩。葉見尋根三二一,江河湖海同一體。
虛懷若谷良心主,願行無悔給最苦。讀書鍛煉強身心,誠勸且行且珍惜。




xml:1.0
os:windows7 x64
ide:MyEclipse 2017



不符合約束的文件

<?xml version="1.0" encoding="utf-8"?>

<!DOCTYPE shopping [
	<!ELEMENT book (name,price,count,discount?)>
	<!ELEMENT name (#PCDATA)>
	<!ELEMENT price (#PCDATA)>
	<!ELEMENT count (#PCDATA)>
	<!ELEMENT discount (#PCDATA)>
]>

<shopping>
	<!--  
		<!ELEMENT book (name,price,count,discount?)>
		book的子元素的順序必須是:name,price,count,discount
		                             出現次數是:name/price/count出現一次
		                    discount 出現零次或者一次
	-->
	<book>
		<name>抱樸子</name>
		<price>100</price>
		<count>3</count>
		<!-- discount出現0次 -->
	</book>

	<book>
		<name>三字經</name>
		<price>200</price>
		<count>5</count>
		<discount>90</discount><!-- discount出現1次 -->
	</book>

	<book>
	
	
		<name>心經</name>
		<price>300</price>
		<count>7</count>
		<discount>90</discount><!-- discount出現2次 -->
		<discount>80</discount>
	</book>
	
</shopping>

myeclipse進行約束檢查結果

技術分享

錯誤修正

技術分享


xml優秀,值得學習。在w3cschool網站中,可以更加全面地學習dtd。
學習資源:itcast和itheima視頻庫。如果您有公開的資源,可以分享給我的話,用您的資源學習也可以。
博文是觀看視頻後,融入思考寫成的。博文好,是老師講得好。博文壞,是 給最苦 沒認真。

dtd ? 復雜元素的子元素出現次數 零次或一次