首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

xml 中的几个回心符号

2013-11-09 
xml 中的几个转意符号在xml中想放入一个html代码,其中出现了点问题,html中有 , 符号,放在xml会出

xml 中的几个转意符号
在xml中想放入一个html代码,其中出现了点问题,html中有 "<" , ">" 符号,放在xml会出错的,要用xml转意符号:
&lt; < less than
&gt; > greater than
&amp; & ampersand 
&apos; ' apostrophe
&quot; " quotation mark



比如xml如下

<html><input type="text" name="name" size="10"/></html>要写成

<html>&lt;input type="text" name="name" size="10"/&gt;</html>

资源来自:http://lvxuehu.iteye.com/blog/166943

热点排行