1. 程式人生 > >dtd 內部中定義實體並引用

dtd 內部中定義實體並引用

分享 視頻 light utf-8 一個 amp true itcast tca

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




xml:1.0
os:windows7 x64
ide:MyEclipse 2017



符合dtd約束的xml文件

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

<!DOCTYPE shopping [
	<!ELEMENT book (name,price,count,comment)>
	<!ELEMENT name (#PCDATA)>
	<!ELEMENT price (#PCDATA)>
	<!ELEMENT count (#PCDATA)>
	<!ELEMENT comment (#PCDATA)>
	<!--
		在dtd中定義一個實體,在xml用
		為了兼容性,需要把實體定義在內部的dtd中
	
	-->
	<!ENTITY DEFAULT_COMMENT "默認好評"		
	>
]>

<shopping>

	<book>
		<name>靈樞</name>
		<price>100</price>
		<count>3</count>
		<!-- 使用實體  &實體名; -->
		<comment>&DEFAULT_COMMENT;</comment>					
	</book> 

	<book>
		<name>素問</name>
		<price>200</price>
		<count>5</count>
		<comment></comment>	
	</book>

	<book>
		<name>傷寒雜病論</name>
		<price>300</price>
		<count>7</count>
		<comment></comment>		
	</book>
	
</shopping>


查看效果
技術分享


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

dtd 內部中定義實體並引用