标签:windows7 w3c utf-8 tca -- ges ips 老师 type
礼悟:
好好学习多思考,尊师重道存感恩。叶见寻根三二一,江河湖海同一体。
虚怀若谷良心主,愿行无悔给最苦。读书锻炼强身心,诚劝且行且珍惜。
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)> <!-- comment标签的 flag属性 字符串类型 缺省值/默认值 --> <!ATTLIST comment flag CDATA "true" > ]> <shopping> <book> <name>了凡四训</name> <price>100</price> <count>3</count> <comment></comment> </book> <book> <name>孟子</name> <price>200</price> <count>5</count> <!-- flag属性不写都可以 --> <comment></comment> </book> <book> <name>灵枢</name> <price>300</price> <count>7</count> <!-- flag属性的值 自定义也可以 --> <comment flag="false"></comment> </book> </shopping>
myeclipse查看效果
浏览器查看效果
xml优秀,值得学习。在w3cschool网站中,可以全面地学习dtd。
学习资源:itcast和itheima视频库。如果您有公开的资源,可以分享给我的话,用您的资源学习也可以。
博文是观看视频后,融入思考写成的。博文好,是老师讲得好。博文坏,是 给最苦 没认真。
标签:windows7 w3c utf-8 tca -- ges ips 老师 type
原文地址:http://www.cnblogs.com/jizuiku/p/7680240.html