Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1104506
  • 博文数量: 141
  • 博客积分: 3161
  • 博客等级: 中校
  • 技术积分: 3011
  • 用 户 组: 普通用户
  • 注册时间: 2011-09-27 14:53
文章存档

2012年(28)

2011年(113)

分类: 嵌入式

2011-09-29 10:25:00

 

    前言: 技术在变,好的东西依然不变!XML就是这样的一样东西.提起XML,大家都很熟悉,到处都可以看见和听到关于它的信息.虽然XML已经有几十年的历史了,但是

   

    真正掌握它的人究竟有多少?之前XML随着ajax又火了一把.大家可以回头看看我们之前出现的的技术AJax,WPF,Silverlight...以及ADO.NET,Web Service...到处都是XML的身影,难道XML仅仅就只是一门标记语言?仅仅只是要求"有开始标记,和结束标记,不区分大小写"就行了吗?是否知道,其实HTML就是XML的一种?很少有书籍能够全面的讲解XML的,要么是把它和ASP.NET一起讲,要么就讲XML怎么样和别的技术用,我也不是什么专家,我想写专门讲XML的文章.和大家分享我的学习结果.

     

    在这个系列中会比较全面的谈谈XML相关的知识:比如,XPath,XSLT,XSD...而且整个系列都穿插着应用,希望大家关注!

    本章内容如下:

    XML的定义和用途

    XML中有那些元素和属性,以及如何使用他们生成格式良好的XML文档

    使用文档类型定义(DTD)验证XML的有效性

     

     1.XML的概念

      XML明确定义了结构化,描述和交换数据的方法.XML与HTML的不同在于,XML不是对数据进行格式化处理的.

 

    例如在HTML中

等标签,他们很多只是表示一种显示的结构,这些标签不是我们想要的数据,也不能保存到数据库中,而且HTML中的标签很有限,而且这些标签的意义很固定,如

就是分段,当你看见:23.4,你不知道这个数字的意义,是表示温度还是价格.然而,XML确实针对数据的,不行格式标签,并且可以实现数据的自我描述,标签定义很灵活,如,CEO,xiaoyang,我们一看这些标签就知道它的意思,而且可以转换为相应的数据库字段(以后谈).

 

    总的来说,XML是数据格式的,有意义,灵活的标记语言.

 

     2.XML元素

      

    XML文档的核心就是包含在文档中的元素.使用过HTML的人,,都清楚元素这个概念.XML元素与HTML元素的概念相似,.就元素的命名而言,XML的规则就比HTML的要灵活,但是XML不允许出现HTML元素那样松散的结构(在HTML中,不是所有的标记都一定要开始标记和结束标记对应).所有的XML元素的开始和结束的标记,以及大小写也要对应.

 

     举例来讲:

 
  1. <html>
  2.   <Title><head>Person</head></title>
  3.   <body>
  4.     <h2>Name</h2>
  5.     <hr>
  6.     xiaoyang
  7. </html>

 

    上面的代码段作为html没有什么问题,但是作为xml文档就有问题:1.1:打开的标记没有关闭标记( ),


也是这样.1.2:元素的开始标记和结束标记大小写形式不同.要使得上面的片段成为有效的XML文档,就要关闭
,以及使得的大小写一致.如下:</FONT><FONT size=4><SPAN style="COLOR: red"></P> <DIV id=codeText class=codeText> <OL style="PADDING-BOTTOM: 5px; MARGIN: 0px 1px 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING-TOP: 5px" class=dp-css> <LI><SPAN style="COLOR: #000000"><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">html</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">title</SPAN><SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">head</SPAN><SPAN style="COLOR: #0000cc">></SPAN>Person<SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">head</SPAN><SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">title</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">body</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">h2</SPAN><SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #ff0000">Name</SPAN><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">h2</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">hr</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><BR></LI> <LI>xiaoyang<BR></LI> <LI><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">body</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">html</SPAN><SPAN style="COLOR: #0000cc">></SPAN></SPAN></LI></OL></DIV> <P></SPAN></FONT><FONT size=4><SPAN style="COLOR: red"></SPAN></FONT> </P> <P><FONT size=4><SPAN style="COLOR: red">    总结:从上面的<body>元素可以看出,要关闭标记,只要使得他们既有相同的元素名称,并且在前面加一个"/"就行了.在<body>元素的开始和结束标记之间的所有元素成为子节点.注意<hr>元素稍有不同.如果谈论的元素不包含数据,就称之为"空元素",<hr/>就是空元素.注意加"/"的位置!</SPAN></FONT></P> <P><FONT size=4></FONT> </P> <P><SPAN style="COLOR: red"><FONT size=4><FONT color=#f00000> <STRONG>  <SPAN style="COLOR: #000000">3<SPAN style="COLOR: #000000">.XML属性</SPAN></SPAN></STRONG></FONT></FONT></SPAN></P> <P><SPAN style="COLOR: red"><SPAN style="COLOR: #000000"><FONT size=4>    </FONT></SPAN></SPAN></P> <P><SPAN style="COLOR: red"><SPAN style="COLOR: #000000"><FONT size=4>    与HTML相似,XML元素也可以附加属性,这些属性通常用于添加有关元素的信息或者包含在元素中数据.在上面的HTML例子中,可以在<body>元素中添加bgcolor属性,如下;</FONT></SPAN></SPAN><FONT size=4></P> <DIV id=codeText class=codeText> <OL style="PADDING-BOTTOM: 5px; MARGIN: 0px 1px 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING-TOP: 5px" class=dp-css> <LI><SPAN style="COLOR: #000000"><SPAN style="COLOR: #0000cc"><</SPAN>html<SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN>title<SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #0000cc"><</SPAN>head<SPAN style="COLOR: #0000cc">></SPAN>Person<SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN>head<SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN>title<SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN>body bgcolor<SPAN style="COLOR: #0000cc">=</SPAN>red<SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN>h2<SPAN style="COLOR: #0000cc">></SPAN>Name<SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN>h2<SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN>hr<SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>  xiaoyang<BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN>body<SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN>html<SPAN style="COLOR: #0000cc">></SPAN></SPAN></LI></OL></DIV> <P></FONT> </P> <P><FONT size=4>    这个属性置顶了页面的背景色,不过该语法会使得上面的文档不再是合法的XML文档,因为XML要求:属性值比如包含再引号中(单引号,或者双引号).虽有为了使</FONT><FONT size=4>得上面的合法,就要改,如下:</FONT> </P> <DIV id=codeText class=codeText> <OL style="PADDING-BOTTOM: 5px; MARGIN: 0px 1px 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING-TOP: 5px" class=dp-css> <LI><SPAN style="COLOR: #000000"><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">html</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">title</SPAN><SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">head</SPAN><SPAN style="COLOR: #0000cc">></SPAN>Person<SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">head</SPAN><SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">title</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">body</SPAN> <SPAN style="COLOR: #ff0000">bgcolor</SPAN><SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"red"</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">h2</SPAN><SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #ff0000">Name</SPAN><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">h2</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">hr</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>  xiaoyang<BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">body</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">html</SPAN><SPAN style="COLOR: #0000cc">></SPAN></SPAN></LI></OL></DIV> <P><FONT size=4>     确保属性值"red"在引号内.</FONT></P> <P><FONT size=4></FONT> </P> <P><FONT color=#f00000 size=4><STRONG>    4.XML解析器</STRONG></FONT></P> <P><FONT size=4>    </FONT></P> <P><FONT size=4>    Web浏览器要解释并且显示使用HTML元素标记的文档,需要处理器或者解析器,XML也是这样的,该解析器以及内需使用数据的应用程序读取XML,所有的XML解析</FONT><FONT size=4>器都要检查XML文档的格式是否良好,格式良好就是遵守XML规范,如之前提到的开始标记和结束标记对应,大小写区分等等.</FONT></P> <P><FONT size=4>    </FONT></P> <P><FONT size=4>    解析器有两种:验证型解析器和非验证型解析器.非验证型的只要检查文档的格式是否良好就可以了,而验证型的还能根据另一个定义XML文档内容和结构的文档,来</FONT><FONT size=4>检查XML文档是否有效.如DTD,XSD.</FONT></P> <P><FONT size=4>     </FONT></P> <P><FONT size=4>    一般情况下,我们的浏览器中就已经内嵌了XML的非验证型的解析器.</FONT></P> <P><FONT size=4></FONT> </P> <P><FONT color=#f00000 size=4><STRONG>     5.构造XML</STRONG></FONT></P> <P><STRONG><FONT color=#f00000 size=4></FONT></STRONG> </P> <P><FONT size=4>     举例,先看下面的一个HTML文档.</FONT></P> <DIV class=cnblogs_code><FONT size=4>  <DIV id=codeText class=codeText> <OL style="PADDING-BOTTOM: 5px; MARGIN: 0px 1px 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING-TOP: 5px" class=dp-css> <LI><SPAN style="COLOR: #000000"><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">html</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">title</SPAN><SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">head</SPAN><SPAN style="COLOR: #0000cc">></SPAN>Person<SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">head</SPAN><SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">title</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">body</SPAN> <SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI>    <SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">p</SPAN><SPAN style="COLOR: #0000cc">></SPAN>xiaoyang<SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">p</SPAN><SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">br</SPAN><SPAN style="COLOR: #0000cc">></SPAN>wuhan<BR></LI> <LI>    <SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">p</SPAN><SPAN style="COLOR: #0000cc">></SPAN>Jefferyzhao<SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">p</SPAN><SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">br</SPAN><SPAN style="COLOR: #0000cc">></SPAN>shanghai<BR></LI> <LI>    <SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">p</SPAN><SPAN style="COLOR: #0000cc">></SPAN>dfyingchen<SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">p</SPAN><SPAN style="COLOR: #0000cc">></SPAN><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000ff">br</SPAN><SPAN style="COLOR: #0000cc">></SPAN>shanghai<BR></LI> <LI>  <SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">body</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000ff">html</SPAN><SPAN style="COLOR: #0000cc">></SPAN></SPAN></LI></OL></DIV></FONT></DIV> <P><FONT size=4>    上面的HTML文档包含格式标记和数据.我们讲上面的文档改为xml文档:</FONT><FONT size=4>     </P> <DIV id=codeText class=codeText> <OL style="PADDING-BOTTOM: 5px; MARGIN: 0px 1px 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING-TOP: 5px" class=dp-css> <LI><SPAN style="COLOR: #000000"><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">?</SPAN>xml <SPAN style="COLOR: #ff0000">version</SPAN><SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"1.0"</SPAN><SPAN style="COLOR: #ff00ff">?</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN>persons<SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI> <SPAN style="COLOR: #0000cc"><</SPAN>person name<SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"xiaoyang"</SPAN><SPAN style="COLOR: #0000cc">></SPAN>wuhan<SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN>person<SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI> <SPAN style="COLOR: #0000cc"><</SPAN>person name<SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"jefferyzhao"</SPAN><SPAN style="COLOR: #0000cc">></SPAN>shanghai<SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN>person<SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI> <SPAN style="COLOR: #0000cc"><</SPAN>person name<SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"dflyingchen"</SPAN><SPAN style="COLOR: #0000cc">></SPAN>shanghai<SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN>person<SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN>persons<SPAN style="COLOR: #0000cc">></SPAN></SPAN></LI></OL></DIV> <P></FONT></P> <DIV class=cnblogs_code><FONT size=4></FONT> </DIV> <DIV class=cnblogs_code><FONT size=4>     注意:其实如何设计XML文档没有什么公式可以套用的,理解这一点很重要.因为XML只是数据的表现形式而已,你还可以把上面的数据信息改为另外的XML形式,如下:</FONT><FONT size=4>  </DIV> <DIV id=codeText class=codeText> <OL style="PADDING-BOTTOM: 5px; MARGIN: 0px 1px 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING-TOP: 5px" class=dp-css> <LI><SPAN style="COLOR: #000000"><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">?</SPAN>xml <SPAN style="COLOR: #ff0000">version</SPAN><SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"1.0"</SPAN><SPAN style="COLOR: #ff00ff">?</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN>friends<SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI> <SPAN style="COLOR: #0000cc"><</SPAN>friend name<SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"xiaoyang"</SPAN> address<SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"wuhan"</SPAN> <SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI> <SPAN style="COLOR: #0000cc"><</SPAN>friend name<SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"jefferyzhao"</SPAN> address<SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"shanghai"</SPAN> <SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI> <SPAN style="COLOR: #0000cc"><</SPAN>friend name<SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"dflyingchen"</SPAN> address<SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"shanghai"</SPAN> <SPAN style="COLOR: #0000cc">/</SPAN><SPAN style="COLOR: #0000cc">></SPAN><BR></LI> <LI><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">/</SPAN>friends<SPAN style="COLOR: #0000cc">></SPAN></SPAN></LI></OL></DIV> <P></FONT><FONT size=4></FONT></P> <P><FONT size=4></FONT> </P> <P><FONT size=4>    形式可以很多,但是要记住:上面显示的只是数据,没有任何的布局信息.</FONT></P> <P><FONT size=4>    大家可以用任何的文本编辑器来创建一个XML文档,并且用浏览器打开,就会发现:浏览器可以验证XML的格式是否良好.</FONT></P> <P><FONT size=4>          </FONT></P> <P><FONT color=#f00000 size=4><STRONG>     6.XML文档的各个组成部分</STRONG></FONT></P> <P><FONT size=4>     XML文档最多可以有4部分组成(其中3个部分是可选的),如果他们出现在文档中,比如按照下面顺序排列:</FONT></P> <P><FONT size=4><FONT color=#808000>         <STRONG> 序言(可选的)</STRONG></FONT></FONT></P> <P><FONT color=#808000 size=4><STRONG>         DTD(可选的)</STRONG></FONT></P> <P><FONT color=#808000 size=4><STRONG>         文档根</STRONG></FONT></P> <P><FONT color=#808000 size=4><STRONG>         结尾(可选)</STRONG></FONT></P> <P><FONT size=4></FONT> </P> <P><FONT size=4><STRONG>     6.1序言</STRONG></FONT></P> <P><FONT size=4></FONT> </P> <P><FONT size=4>    XML文档的序言部分一般包含出现在文档或者文档根元素开始标记之前的信息.它包含应用与整个文档的信息,如:字符编码,样式表引用.另外,还包含XML声</FONT><FONT size=4>明,注释,处理指令.但是所有这些都是可选的.</FONT></P> <P><FONT size=4></FONT> </P> <P><FONT size=4>    XML声明是这些组成部分中最重要的,虽然它是可选的,但是很多的系统和解析器都要求文档有XML声明.因为声明中包含了:</FONT></P> <P><FONT size=4>    XML语法的version,"1.0"版本</FONT></P> <P><FONT size=4>    文档内容编码encoding (可选)</FONT></P> <P><FONT size=4>    文档是否是standalone(默认值为no),表示文档是否依赖外部文件</FONT></P> <P><FONT size=4>     </FONT></P> <P><FONT size=4>    XML声明最基本的格式如下:</FONT><FONT size=4>     </P> <DIV id=codeText class=codeText> <OL style="PADDING-BOTTOM: 5px; MARGIN: 0px 1px 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING-TOP: 5px" class=dp-css> <LI><SPAN style="COLOR: #000000"><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">?</SPAN>xml <SPAN style="COLOR: #ff0000">version</SPAN><SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"1.0"</SPAN><SPAN style="COLOR: #ff00ff">?</SPAN><SPAN style="COLOR: #0000cc">></SPAN></SPAN></LI></OL></DIV> <P></FONT> </P> <P><SPAN style="COLOR: #000000"><FONT size=4>     还可以这样,如:</FONT></SPAN> <FONT size=4>        </P> <DIV id=codeText class=codeText> <OL style="PADDING-BOTTOM: 5px; MARGIN: 0px 1px 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING-TOP: 5px" class=dp-css> <LI><SPAN style="COLOR: #000000"><SPAN style="COLOR: #0000cc"><</SPAN><SPAN style="COLOR: #0000cc">?</SPAN>xml <SPAN style="COLOR: #ff0000">version</SPAN><SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"1.0"</SPAN> <SPAN style="COLOR: #ff0000">encoding</SPAN><SPAN style="COLOR: #0000cc">=</SPAN><SPAN style="COLOR: #ff00ff">"gb2312"</SPAN> ?<SPAN style="COLOR: #0000cc">></SPAN></SPAN></LI></OL></DIV> <P>  </FONT><FONT size=4>   注意:'<?xml " 要紧挨一起,后面的"?>"也是一样.</FONT></P> <P><FONT size=4></FONT> </P> <P><FONT size=4><STRONG>     6.2 文档类型定义DTD</STRONG></FONT></P> <P><FONT size=4>     文档类型定义是描述XML的内容的,它定义了你创建的XML文档中应该包含哪些元素,哪些属性.然后文档类型定义结合解析器一起验证你的XML文档.我们</FONT><FONT size=4>能以后会讲解的,这里知提一下.</FONT></P> <P><FONT size=4>         </FONT></P> <P><FONT size=4><STRONG>     6.3文档根</STRONG></FONT></P> <P><FONT size=4>               </FONT></P> <P><FONT size=4>     文档根是必须的,它是XML文档中序言和DTD部分后面的第一个元素,它可以包含属性,子元素,注释等.前面的例子中的<persons>就是一个文档根的例子.</FONT></P> <P><FONT size=4>         </FONT></P> <P><FONT size=4><STRONG>     6.4结尾</STRONG></FONT></P> <P><FONT size=4></FONT> </P> <P><FONT size=4>     结尾与序言相似,因为结尾部分就是处理指令的所在位置,一般用于执行清除工作,但是很少使用.大家可以不管.</FONT></P> <P><FONT size=4></FONT> </P> <P><FONT size=4>    因为:XML理论很多,一下子写多了大家可能不爱看,今天就到这里.</FONT></P> <P><FONT size=4>    下一篇:创建格式良好的XML文档.</FONT></P></DIV> </div> <!-- <div class="Blog_con3_1">管理员在2009年8月13日编辑了该文章文章。</div> --> <div class="Blog_con2_1 Blog_con3_2"> <div> <!--<img src="/image/default/tu_8.png">--> <!-- JiaThis Button BEGIN --> <div class="bdsharebuttonbox"><A class=bds_more href="#" data-cmd="more"></A><A class=bds_qzone title=分享到QQ空间 href="#" data-cmd="qzone"></A><A class=bds_tsina title=分享到新浪微博 href="#" data-cmd="tsina"></A><A class=bds_tqq title=分享到腾讯微博 href="#" data-cmd="tqq"></A><A class=bds_renren title=分享到人人网 href="#" data-cmd="renren"></A><A class=bds_weixin title=分享到微信 href="#" data-cmd="weixin"></A></div> <script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"share":{}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script> <!-- JiaThis Button END --> </div> 阅读(1585) | 评论(0) | 转发(1) | <div class="HT_line3"></div> </div> <div class="Blog_con3_3"> <div><span id='digg_num'>0</span><a href="javascript:void(0)" id='digg' bid='2930943' url='/blog/digg.html' ></a></div> <p>上一篇:<a href="/uid-23458341-id-2930942.html">掌握XML系列(2)--创建格式良好的XML文档</a></p> <p>下一篇:<a href="/uid-23458341-id-2930944.html">正则核心对象详解(三 )</a></p> </div> </div> <!-- <div class="Blog_con3_4 Blog_con3_5"> <div class="Blog_tit2 Blog_tit7">热门推荐</div> <ul> <li><a href="" title="" target='blank' ></a></li> </ul> </div> --> </div> </div> <div class="Blog_right1_7" id='replyList'> <div class="Blog_tit3">给主人留下些什么吧!~~</div> <!--暂无内容--> <!-- 评论分页--> <div class="Blog_right1_6 Blog_right1_12"> </div> <!-- 评论分页--> <div class="Blog_right1_10" style="display:none"> <div class="Blog_tit3">评论热议</div> <!--未登录 --> <div class="Blog_right1_8"> <div class="nologin_con1"> 请登录后评论。 <p><a href="http://account.chinaunix.net/login" onclick="link(this)">登录</a> <a href="http://account.chinaunix.net/register?url=http%3a%2f%2fblog.chinaunix.net">注册</a></p> </div> </div> </div> <div style="text-align:center;margin-top:10px;"> <script type="text/javascript" smua="d=p&s=b&u=u3118759&w=960&h=90" src="//www.nkscdn.com/smu0/o.js"></script> </div> </div> </div> </div> <input type='hidden' id='report_url' value='/blog/ViewReport.html' /> <script type="text/javascript"> //测试字符串的长度 一个汉字算2个字节 function mb_strlen(str) { var len=str.length; var totalCount=0; for(var i=0;i<len;i++) { var c = str.charCodeAt(i); if ((c >= 0x0001 && c <= 0x007e) || (0xff60<=c && c<=0xff9f)) { totalCount++; }else{ totalCount+=2; } } return totalCount; } /* var Util = {}; Util.calWbText = function (text, max){ if(max === undefined) max = 500; var cLen=0; var matcher = text.match(/[^\x00-\xff]/g), wlen = (matcher && matcher.length) || 0; //匹配url链接正则 http://*** var pattern = /http:\/\/([\w-]+\.)+[\w-]+(\/*[\w-\.\/\?%&=][^\s^\u4e00-\u9fa5]*)?/gi; //匹配的数据存入数组 var arrPt = new Array(); var i = 0; while((result = pattern.exec(text)) != null){ arrPt[i] = result[0]; i++; } //替换掉原文本中的链接 for(var j = 0;j<arrPt.length;j++){ text = text.replace(arrPt[j],""); } //减掉链接所占的长度 return Math.floor((max*2 - text.length - wlen)/2 - 12*i); }; */ var allowComment = '0'; //举报弹出层 function showJuBao(url, cid){ $.cover(false); asyncbox.open({ id : 'report_thickbox', url : url, title : '举报违规', width : 378, height : 240, scroll : 'no', data : { 'cid' : cid, 'idtype' : 2 , 'blogurl' : window.location.href }, callback : function(action){ if(action == 'close'){ $.cover(false); } } }); } $(function(){ //创建管理员删除的弹出层 $('#admin_article_del').click(function(){ $.cover(false); asyncbox.open({ id : 'class_thickbox', html : '<div class="HT_layer3_1"><ul><li class="HT_li1">操作原因:<select class="HT_sel7" id="del_type" name="del_type"><option value="广告文章">广告文章</option><option value="违规内容">违规内容</option><option value="标题不明">标题不明</option><option value="文不对题">文不对题</option></select></li><li class="HT_li1" ><input class="HT_btn4" id="admin_delete" type="button" /></li></ul></div>', title : '选择类型', width : 300, height : 150, scroll : 'no', callback : function(action){ if(action == 'close'){ $.cover(false); } } }); }); $('#admin_delete').live('click' , function(){ ///blog/logicdel/id/3480184/url/%252Fblog%252Findex.html.html var type = $('#del_type').val(); var url = '/blog/logicdel/id/2930943/url/%252Fuid%252F23458341.html.html'; window.location.href= url + '?type=' + type; }); //顶 js中暂未添加&过滤 $('#digg').live('click' , function(){ if(isOnLine == '' ) { //showErrorMsg('登录之后才能进行此操作' , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); return false; } var bid = $('#digg').attr('bid'); var url = $('#digg').attr('url'); var digg_str = $.cookie('digg_id'); if(digg_str != null) { var arr= new Array(); //定义一数组 arr = digg_str.split(","); //字符分割 for( i=0 ; i < arr.length ; i++ ) { if(bid == arr[i]) { showErrorMsg('已经赞过该文章', '消息提示'); return false; } } } $.ajax({ type:"POST", url:url, data: { 'bid' : bid }, dataType: 'json', success:function(msg){ if(msg.error == 0) { var num = parseInt($('#digg_num').html(),10); num += 1; $('#digg_num').html(num); $('#digg').die(); if(digg_str == null) { $.cookie('digg_id', bid, {expires: 30 , path: '/'}); } else { $.cookie('digg_id', digg_str + ',' + bid, {expires: 30 , path: '/'}); } showSucceedMsg('谢谢' , '消息提示'); } else if(msg.error == 1) { //showErrorMsg(msg.error_content , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); } else if(msg.error == 2) { showErrorMsg(msg.error_content , '消息提示'); } } }); }); //举报弹出层 /*$('.box_report').live('click' , function(){ if(isOnLine == '' ) { //showErrorMsg('登录之后才能进行此操作' , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); return false; } var url = $('#report_url').val(); var cid = $(this).attr('cid'); $.cover(false); asyncbox.open({ id : 'report_thickbox', url : url, title : '举报违规', width : 378, height : 240, scroll : 'no', data : { 'cid' : cid, 'idtype' : 2 }, callback : function(action){ if(action == 'close'){ $.cover(false); } } }); });*/ //评论相关代码 //点击回复显示评论框 $('.Blog_a10').live('click' , function(){ if(isOnLine == '' ) { //showErrorMsg('登录之后才能进行此操作' , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); return false; } if(allowComment == 1) { showErrorMsg('该博文不允许评论' , '消息提示'); return false; } var tid = $(this).attr('toid');//留言作者id var bid = $(this).attr('bid');//blogid var cid = $(this).attr('cid');//留言id var tname = $(this).attr('tname'); var tpl = '<div class="Blog_right1_9">'; tpl += '<div class="div2">'; tpl += '<textarea name="" cols="" rows="" class="Blog_ar1_1" id="rmsg">文明上网,理性发言...</textarea>'; tpl += '</div>'; tpl += '<div class="div3">'; tpl += '<div class="div3_2"><a href="javascript:void(0);" class="Blog_a11" id="quota_sbumit" url="/Comment/PostComment.html" tid="'+tid+'" bid="'+bid+'" cid="'+cid+'" tname="'+tname+'" ></a><a href="javascript:void(0)" id="qx_comment" class="Blog_a12"></a></div>'; tpl += '<div class="div3_1"><a href="javascript:void(0);" id="mface"><span></span>表情</a></div>'; tpl += '<div class="clear"></div>'; tpl += '</div>'; tpl += '</div>'; $('.z_move_comment').html(''); $(this).parents('.Blog_right1_8').find('.z_move_comment').html(tpl).show(); }); //引用的评论提交 $('#quota_sbumit').live('click' , function(){ if(isOnLine == '' ) { //showErrorMsg('登录之后才能进行此操作' , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); return false; } var bid = $(this).attr('bid'); var tid = $(this).attr('tid');//被引用人的id var qid = $(this).attr('cid');//引用的id var url = $(this).attr('url'); var text = $('#rmsg').val(); var tname = $(this).attr('tname'); if(text == '' || text=='文明上网,理性发言...') { showErrorMsg('评论内容不能为空!' , '消息提示'); return false; } else { if(mb_strlen(text) > 1000){ showErrorMsg('评论内容不能超过500个汉字' , '消息提示'); return false; } } $.ajax({ type: "post", url: url , data: {'bid': bid , 'to' : tid , 'qid' : qid , 'text': text , 'tname' : tname }, dataType: 'json', success: function(data){ if(data.code == 1){ var tpl = '<div class="Blog_right1_8">'; tpl+= '<div class="Blog_right_img1"><a href="' +data.info.url+ '" >' + data.info.header + '</a></div>'; tpl+= '<div class="Blog_right_font1">'; tpl+= '<p class="Blog_p5"><span><a href="' +data.info.url+ '" >' + data.info.username + '</a></span>' + data.info.dateline + '</p>'; tpl+= '<p class="Blog_p7"><a href="' + data.info.quota.url + '">' + data.info.quota.username + '</a>:'+ data.info.quota.content + '</p>'; tpl+= '<p class="Blog_p8">' + data.info.content + '</p><span class="span_text1"><a href="javascript:void(0);" class="Blog_a10" toid=' + data.info.fuid + ' bid=' + data.info.bid + ' cid=' + data.info.cid + ' tname = ' + data.info.username + ' >回复</a> |  <a class="comment_del_mark" style="cursor:pointer" url="' + data.info.delurl + '" >删除</a> |  <a href="javascript:showJuBao(\'/blog/ViewReport.html\','+data.info.cid+')" class="box_report" cid="' + data.info.cid + '" >举报</a></span></div>'; tpl+= '<div class="z_move_comment" style="display:none"></div>'; tpl+= '<div class="Blog_line1"></div></div>'; $('#replyList .Blog_right1_8:first').before(tpl); $('.z_move_comment').html('').hide(); } else if(data.code == -1){ //showErrorMsg(data.info , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); } }, error: function(){//请求出错处理 } }); }); //底部发表评论 $('#submitmsg').click(function(){ if(allowComment == 1) { showErrorMsg('该博文不允许评论' , '消息提示'); return false; } var bid = $(this).attr('bid'); var toid = $(this).attr('toid'); var text = $('#reply').val(); var url = $(this).attr('url'); if(text == '' || text=='文明上网,理性发言...') { showErrorMsg('评论内容不能为空!' , '消息提示'); return false; } else { if(mb_strlen(text) > 1000){ showErrorMsg('评论内容不能超过500个汉字' , '消息提示'); return false; } } $.ajax({ type: "post", url: url , data: {'bid': bid , 'to' : toid ,'text': text}, dataType: 'json', success: function(data){ if(data.code == 1) { var tpl = '<div class="Blog_right1_8">'; tpl += '<div class="Blog_right_img1"><a href="' +data.info.url+ '" >' + data.info.header + '</a></div>'; tpl += '<div class="Blog_right_font1">'; tpl += '<p class="Blog_p5"><span><a href="' +data.info.url+ '" >' + data.info.username + '</a></span>' + data.info.dateline + '</p>'; tpl += '<p class="Blog_p6">' + data.info.content + '</p>'; tpl += '<div class="div1"><a href="javascript:void(0);" class="Blog_a10" toid=' + data.info.fuid + ' bid=' + data.info.bid + ' cid=' + data.info.cid + '>回复</a> |  <a class="comment_del_mark" style="cursor:pointer" url="' + data.info.delurl + '">删除</a> |  <a href="javascript:showJuBao(\'/blog/ViewReport.html\','+data.info.cid+')" class="box_report" cid="' + data.info.cid + '">举报</a></div>'; tpl += '<div class="z_move_comment" style="display:none"></div>'; tpl += '</div><div class="Blog_line1"></div></div>'; $('.Blog_tit3:first').after(tpl); $('#reply').val('文明上网,理性发言...'); } else if(data.code == -1) { showErrorMsg(data.info , '消息提示'); } }, error: function(){//请求出错处理 } }); }); //底部评论重置 $('#reset_comment').click(function(){ $('#reply').val('文明上网,理性发言...'); }); //取消回复 $('#qx_comment').live('click' , function(){ $('.z_move_comment').html('').hide(); }); $('#rmsg, #reply').live({ focus:function(){ if($(this).val() == '文明上网,理性发言...'){ $(this).val(''); } }, blur:function(){ if($(this).val() == ''){ $(this).val('文明上网,理性发言...'); } } }); //删除留言确认 $('.comment_del_mark').live('click' , function(){ var url = $(this).attr('url'); asyncbox.confirm('删除留言','确认', function(action){ if(action == 'ok') { location.href = url; } }); }); //删除时间确认 $('.del_article_id').click(function(){ var delurl = $(this).attr('delurl'); asyncbox.confirm('删除文章','确认', function(action){ if(action == 'ok') { location.href = delurl; } }); }); /* //字数限制 $('#rmsg, #reply').live('keyup', function(){ var id = $(this).attr('id'); var left = Util.calWbText($(this).val(), 500); var eid = '#errmsg'; if(id == 'reply') eid = '#rerrmsg'; if (left >= 0) $(eid).html('您还可以输入<span>' + left + '</span>字'); else $(eid).html('<font color="red">您已超出<span>' + Math.abs(left) + '</span>字 </font>'); }); */ //加载表情 $('#face').qqFace({id : 'facebox1', assign : 'reply', path : '/image/qqface/'}); $('#mface').qqFace({id : 'facebox', assign : 'rmsg', path:'/image/qqface/'}); /* $('#class_one_id').change(function(){ alert(123213); var id = parseInt($(this).val() , 10); if(id == 0) return false; $('.hidden_son_class span').each(function( index , dom ){ if( dom.attr('cid') == id ) { } }); }); */ //转载文章 var turn_url = "/blog/viewClassPart.html"; $('#repost_bar').click(function(){ if(isOnLine == '' ) { //showErrorMsg('登录之后才能进行此操作' , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); return false; } var id = $(this).attr('bid'); asyncbox.open({ id : 'turn_class_thickbox', url : turn_url, title : '转载文章', width : 330, height : 131, scroll : 'no', data : { 'id' : id }, callback : function(action){ if(action == 'close'){ $.cover(false); } } }); }); /* //转发文章 $('#repost_bar').live('click' , function(){ if(isOnLine == '' ) { //showErrorMsg('登录之后才能进行此操作' , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); return false; } var bid = $(this).attr('bid'); var url = $(this).attr('url'); asyncbox.confirm('转载文章','确认', function(action){ if(action == 'ok'){ $.ajax({ type:"POST", url:url, data: { 'bid' : bid }, dataType: 'json', success:function(msg){ if(msg.error == 0){ showSucceedMsg('转发成功!', '消息提示'); }else if(msg.error == 1){ //location.href = '/index.php?r=site/login'; showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); }else{ showErrorMsg(msg.error_content, '消息提示'); } } }); } }); }); */ }); </script> <!--该部分应该放在输出代码块的后面才起作用 --> <script type="text/javascript"> SyntaxHighlighter.autoloader( 'applescript /highlight/scripts/shBrushAppleScript.js', 'actionscript3 as3 /highlight/scripts/shBrushAS3.js', 'bash shell /highlight/scripts/shBrushBash.js', 'coldfusion cf /highlight/scripts/shBrushColdFusion.js', 'cpp c /highlight/scripts/shBrushCpp.js', 'c# c-sharp csharp /highlight/scripts/shBrushCSharp.js', 'css /highlight/scripts/shBrushCss.js', 'delphi pascal /highlight/scripts/shBrushDelphi.js', 'diff patch pas /highlight/scripts/shBrushDiff.js', 'erl erlang /highlight/scripts/shBrushErlang.js', 'groovy /highlight/scripts/shBrushGroovy.js', 'java /highlight/scripts/shBrushJava.js', 'jfx javafx /highlight/scripts/shBrushJavaFX.js', 'js jscript javascript /highlight/scripts/shBrushJScript.js', 'perl pl /highlight/scripts/shBrushPerl.js', 'php /highlight/scripts/shBrushPhp.js', 'text plain /highlight/scripts/shBrushPlain.js', 'py python /highlight/scripts/shBrushPython.js', 'ruby rails ror rb /highlight/scripts/shBrushRuby.js', 'scala /highlight/scripts/shBrushScala.js', 'sql /highlight/scripts/shBrushSql.js', 'vb vbnet /highlight/scripts/shBrushVb.js', 'xml xhtml xslt html /highlight/scripts/shBrushXml.js' ); SyntaxHighlighter.all(); function code_hide(id){ var code = document.getElementById(id).style.display; if(code == 'none'){ document.getElementById(id).style.display = 'block'; }else{ document.getElementById(id).style.display = 'none'; } } </script> <!--回顶部js2011.12.30--> <script language="javascript"> lastScrollY=0; function heartBeat(){ var diffY; if (document.documentElement && document.documentElement.scrollTop) diffY = document.documentElement.scrollTop; else if (document.body) diffY = document.body.scrollTop else {/*Netscape stuff*/} percent=.1*(diffY-lastScrollY); if(percent>0)percent=Math.ceil(percent); else percent=Math.floor(percent); document.getElementById("full").style.top=parseInt(document.getElementById("full").style.top)+percent+"px"; lastScrollY=lastScrollY+percent; if(lastScrollY<200) { document.getElementById("full").style.display="none"; } else { document.getElementById("full").style.display="block"; } } var gkuan=document.body.clientWidth; var ks=(gkuan-960)/2-30; suspendcode="<div id=\"full\" style='right:-30px;POSITION:absolute;TOP:500px;z-index:100;width:26px; height:86px;cursor:pointer;'><a href=\"javascript:void(0)\" onclick=\"window.scrollTo(0,0);\"><img src=\"\/image\/top.png\" /></a></div>" document.write(suspendcode); window.setInterval("heartBeat()",1); </script> <!-- footer --> <div class="Blog_footer" style='clear:both'> <div><a href="http://www.chinaunix.net/about/index.shtml" target="_blank" rel="nofollow">关于我们</a> | <a href="http://www.it168.com/bottomfile/it168.shtml" target="_blank" rel="nofollow">关于IT168</a> | <a href="http://www.chinaunix.net/about/connect.html" target="_blank" rel="nofollow">联系方式</a> | <a href="http://www.chinaunix.net/about/service.html" target="_blank" rel="nofollow">广告合作</a> | <a href="http://www.it168.com//bottomfile/flgw/fl.htm" target="_blank" rel="nofollow">法律声明</a> | <a href="http://account.chinaunix.net/register?url=http%3a%2f%2fblog.chinaunix.net" target="_blank" rel="nofollow">免费注册</a> <p>Copyright 2001-2010 ChinaUnix.net All Rights Reserved 北京皓辰网域网络信息技术有限公司. 版权所有 </p> <div>感谢所有关心和支持过ChinaUnix的朋友们 <p><a href="http://beian.miit.gov.cn/">16024965号-6 </a></p> </div> </div> </div> </div> <script language="javascript"> //全局错误提示弹出框 function showErrorMsg(content, title, url){ var url = url || ''; var title = title || '消息提示'; var html = ''; html += '<div class="HT_layer3_1 HT_layer3_2"><ul><li><p><span class="login_span1"></span>' + content + '</p></li>'; if(url == '' || url.length == 0){ html += '<li class="HT_li1"><input type="button" class="HT_btn2" onclick=\'close_windows("error_msg")\'></li>'; } else { html += '<li class="HT_li1"><input type="button" class="login_btn1" onclick="location.href=\'' + url + '\'"></li>'; } html += '</ul></div>'; $.cover(true); asyncbox.open({ id: 'error_msg', title : title, html : html, 'callback' : function(action){ if(action == 'close'){ $.cover(false); } } }); } //全局正确提示 function showSucceedMsg(content, title , url ){ var url = url || ''; var title = title || '消息提示'; var html = ''; html += '<div class="HT_layer3_1 HT_layer3_2"><ul><li><p><span class="login_span2"></span>' + content + '</p></li>'; if(url == '' || url.length == 0){ html += '<li class="HT_li1"><input type="button" class="HT_btn2" onclick=\'close_windows("error_msg")\'></li>'; } else { html += '<li class="HT_li1"><input type="button" class="HT_btn2" onclick="location.href=\'' + url + '\'"></li>'; } html += '</ul></div>'; $.cover(true); asyncbox.open({ id: 'error_msg', title : title, html : html, 'callback' : function(action){ if(action == 'close'){ $.cover(false); } } }); } //关闭指定id的窗口 function close_windows(id){ $.cover(false); $.close(id); } //公告 var tID; var tn; // 高度 var nStopTime = 5000; // 不同行间滚动时间隔的时间,值越小,移动越快 var nSpeed = 50; // 滚动时,向上移动一像素间隔的时间,值越小,移动越快 var isMove = true; var nHeight = 25; var nS = 0; var nNewsCount = 3; /** * n 用于表示是否为第一次运行 **/ function moveT(n) { clearTimeout(tID) var noticev2 = document.getElementById("noticev2") nS = nSpeed; // 只在第一次调用时运行,初始化环境(有没有参数) if (n) { // 设置行高 noticev2.style.lineHeight = nHeight + "px"; // 初始化显示位置 tn = 0; // 刚进入时在第一行停止时间 nS = nStopTime; } // 判断鼠标是否指向层 if (isMove) { // 向上移动一像素 tn--; // 如果移动到最下面一行了,则移到顶行 if (Math.abs(tn) == nNewsCount * nHeight) { tn = 0; } // 设置位置 noticev2.style.marginTop = tn + "px"; // 完整显示一行时,停止一段时间 if (tn % nHeight == 0) { nS = nStopTime; } } tID = setTimeout("moveT()", nS); } moveT(1); // 此处可以传入任何参数 </script> <script type="text/javascript"> // var _gaq = _gaq || []; // _gaq.push(['_setAccount', 'UA-20237423-2']); // _gaq.push(['_setDomainName', '.chinaunix.net']); // _gaq.push(['_trackPageview']); // // (function() { // var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; // ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; // var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); // })(); </script> <script type="text/javascript"> var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://"); document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F0ee5e8cdc4d43389b3d1bfd76e83216b' type='text/javascript'%3E%3C/script%3E")); function link(t){ var href= $(t).attr('href'); href+="?url="+encodeURIComponent(location.href); $(t).attr('href',href); //setCookie("returnOutUrl", location.href, 60, "/"); } </script> </body> </html>