<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>基础教程</title>
<link>http://www.itxuexi.com/learn/</link>
<description>基础教程</description>
<language>zh-cn</language>
<generator><![CDATA[Copyright &amp;copy; 2009-2011 IT学习网 版权所有]]></generator>
<webmaster>no-reply@itxuexi.com</webmaster>
<item>
    <title><![CDATA[Set the horizontal and vertical placement of an image]]></title>
    <link>http://www.itxuexi.com/learn/8127.html</link>
    <description><![CDATA[lt;htmlgt; lt;headgt; lt;script type=quot;text/javascriptquot;gt; function setSpace() { document.getElementById(quot;compmanquot;).hspace=quot;100quot; document.getElementById(quot;compmanquot;).vspace=quot;100quot; } lt;/scriptgt; ]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>HTML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[xml - Display the XML of an nodexml -可用来显示XML中的一个节点]]></title>
    <link>http://www.itxuexi.com/learn/8126.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Display the DOMImplementation object that handles the document显示处理文档的DOMImplementation对象]]></title>
    <link>http://www.itxuexi.com/learn/8125.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Get the type of the form element (checkbox)得到表单中元素的类型(checkbox)]]></title>
    <link>http://www.itxuexi.com/learn/8124.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;formgt; lt;input type=quot;checkboxquot; id=quot;check1quot; /gt; lt;/formgt; lt;script type=quot;text/javascriptquot;gt; x=document.getElementById(quot;check1quot;); document.write(quot;表单内元素的类]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>HTML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Change the tab order of checkboxes改变checkbox的tab顺序]]></title>
    <link>http://www.itxuexi.com/learn/8123.html</link>
    <description><![CDATA[lt;htmlgt; lt;headgt; lt;script type=quot;text/javascriptquot;gt; function changeTabIndex() { document.getElementById('check3').tabIndex=quot;1quot; document.getElementById('check1').tabIndex=quot;3quot; } lt;/scriptgt; lt;/headgt; lt]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>HTML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Get the name of a checkbox得到checkbox的name]]></title>
    <link>http://www.itxuexi.com/learn/8122.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;formgt; lt;input type=quot;checkboxquot; id=quot;check1quot; name=quot;check1quot; /gt; lt;/formgt; lt;pgt;checkbox的name为: lt;script type=quot;text/javascriptquot;gt; document.write(document.getElemen]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>HTML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Get the id of a checkbox得到checkbox的id]]></title>
    <link>http://www.itxuexi.com/learn/8121.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;formgt; lt;input type=quot;checkboxquot; id=quot;check1quot; /gt; lt;/formgt; lt;pgt;checkbox的id为: lt;script type=quot;text/javascriptquot;gt; document.write(document.getElementById(quot;check1quot;).]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>HTML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Get the id of the form the checkbox belongs tocheckbox所在表单的id]]></title>
    <link>http://www.itxuexi.com/learn/8120.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;form id=quot;form1quot;gt; lt;input type=quot;checkboxquot; id=quot;check1quot; /gt; lt;/formgt; lt;pgt;包含checkbox的表单id 为: lt;script type=quot;text/javascriptquot;gt; x=document.getElementById]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>HTML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Disable a checkbox禁用checkbox]]></title>
    <link>http://www.itxuexi.com/learn/8119.html</link>
    <description><![CDATA[lt;htmlgt; lt;headgt; lt;script type=quot;text/javascriptquot;gt; function disable() { document.getElementById(quot;check1quot;).disabled=true } lt;/scriptgt; lt;/headgt; lt;bodygt; lt;formgt; lt;input type=quot;checkboxquot; id=]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>HTML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Return if a checkbox is checked by default如果checkbox默认情况是选中的则返回]]></title>
    <link>http://www.itxuexi.com/learn/8118.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;formgt; lt;input type=quot;checkboxquot; id=quot;myCheckquot; checked=quot;checkedquot; /gt; lt;/formgt; lt;script type=quot;text/javascriptquot;gt; alert(document.getElementById(quot;myCheckquot;).defaul]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>HTML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Return the alt text for checkboxes返回checkbox的alt文字]]></title>
    <link>http://www.itxuexi.com/learn/8117.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;formgt; 我有辆自行车: lt;input id=quot;bikequot; alt=quot;bikequot; type=quot;checkboxquot; name=quot;Bikequot; /gt; lt;br /gt; 我有辆汽车: lt;input id=quot;carquot; alt=quot;carquot; type=qu]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>HTML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Return the access key for a checkbox返回某checkbox的accessKey]]></title>
    <link>http://www.itxuexi.com/learn/8116.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;formgt; lt;input type=quot;checkboxquot; accesskey=quot;cquot; id=quot;check1quot; /gt; lt;/formgt; lt;pgt;Checkbox的ccess key为: lt;script type=quot;text/javascriptquot;gt; x=document.getElementById('c]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>HTML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Return the id of the form containing the button返回包含按钮表单的id值]]></title>
    <link>http://www.itxuexi.com/learn/8115.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;form id=quot;form1quot;gt; lt;input type=quot;buttonquot; value=quot;Click me!quot; id=quot;button1quot; /gt; lt;/formgt; lt;pgt;包含这个按钮的表单id为: lt;script type=quot;text/javascriptquot;]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>HTML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Return the access key for a button返回按钮的access key]]></title>
    <link>http://www.itxuexi.com/learn/8114.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;formgt; lt;input type=quot;buttonquot; value=quot;点我!quot; accesskey=quot;bquot; id=quot;button1quot; /gt; lt;/formgt; lt;pgt;The access key for the button is: lt;script type=quot;text/javascriptquot]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>HTML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[How to join three arrays with the concat() method怎样使用concat()方法结合三个数组]]></title>
    <link>http://www.itxuexi.com/learn/8113.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/javascriptquot;gt; var arr = new Array(3) arr[0] = quot;Janiquot; arr[1] = quot;Tovequot; arr[2] = quot;Hegequot; var arr2 = new Array(3) arr2[0] = quot;Johnquot; arr2[1] = quot;Andyquot]]></description>
    <pubDate>2009-05-24</pubDate>
    <category>JavaScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Return a specified number of characters from a string从字符串中返回指定数量的字符串]]></title>
    <link>http://www.itxuexi.com/learn/8112.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;% sometext=quot;欢迎来到ITxuexi！quot; response.write(Mid(sometext,1,2)) %gt; lt;/bodygt; lt;/htmlgt;]]></description>
    <pubDate>2009-03-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Is this a date?判断是否为日期]]></title>
    <link>http://www.itxuexi.com/learn/8111.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;% somedate=quot;10/30/99quot; response.write(IsDate(somedate)) %gt; lt;/bodygt; lt;/htmlgt;]]></description>
    <pubDate>2009-03-24</pubDate>
    <category>ASP</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[Convert Celsius to Fahrenheit将摄氏度转换成华氏度]]></title>
    <link>http://www.itxuexi.com/learn/8110.html</link>
    <description><![CDATA[lt;htmlgt; lt;headgt; lt;script type=quot;text/javascriptquot;gt; function convert(degree) { if (degree==quot;Cquot;) { F=document.getElementById(quot;cquot;).value * 9 / 5 + 32 document.getElementById(quot;fquot;).value=Math.round(F) } ]]></description>
    <pubDate>2009-03-24</pubDate>
    <category>JavaScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[替换指定字符]]></title>
    <link>http://www.itxuexi.com/learn/8109.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/vbscriptquot;gt; sometext=quot;ITxuexi等待你！quot; document.write(Replace(sometext, quot;等待quot;, quot;欢迎quot;)) lt;/scriptgt; lt;/bodygt; lt;/htmlgt;]]></description>
    <pubDate>2009-03-05</pubDate>
    <category>VBScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[返回指定要显示字符的长度]]></title>
    <link>http://www.itxuexi.com/learn/8108.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/vbscriptquot;gt; sometext=quot;ITxuexi欢迎你quot; document.write(Left(sometext,3)) document.write(quot;lt;br /gt;quot;) document.write(Right(sometext,1)) lt;/scriptgt; lt;/bodygt; lt]]></description>
    <pubDate>2009-03-05</pubDate>
    <category>VBScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[返回范围在0到99之间的随机数]]></title>
    <link>http://www.itxuexi.com/learn/8107.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/vbscriptquot;gt; randomize() randomNumber=Int(100 * rnd()) document.write(quot;这是一个随机数字：lt;bgt;quot; amp; randomNumber amp; quot;lt;/bgt;quot;) lt;/scriptgt; lt;/bod]]></description>
    <pubDate>2009-03-05</pubDate>
    <category>VBScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[返回随机数]]></title>
    <link>http://www.itxuexi.com/learn/8106.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/vbscriptquot;gt; randomize() document.write(Rnd()) lt;/scriptgt; lt;/bodygt; lt;/htmlgt;]]></description>
    <pubDate>2009-03-05</pubDate>
    <category>VBScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[四舍五入]]></title>
    <link>http://www.itxuexi.com/learn/8105.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/vbscriptquot;gt; i = 48.66776677 j = 48.3333333 document.write(Round(i)) document.write(quot;lt;br /gt;quot;) document.write(Round(j)) lt;/scriptgt; lt;/bodygt; lt;/htmlgt;]]></description>
    <pubDate>2009-03-05</pubDate>
    <category>VBScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[反向字符串]]></title>
    <link>http://www.itxuexi.com/learn/8104.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/vbscriptquot;gt; sometext = quot;ITxuexi欢迎你！quot; document.write(strReverse(sometext)) lt;/scriptgt; lt;/bodygt; lt;/htmlgt;]]></description>
    <pubDate>2009-03-05</pubDate>
    <category>VBScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[清除字符串的空格]]></title>
    <link>http://www.itxuexi.com/learn/8103.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/vbscriptquot;gt; key=quot; 欢迎 quot; document.write(quot;ITxuexiquot; amp; trim(key) amp; quot;你！lt;br /gt;quot;) document.write(quot;ITxuexiquot; amp; rtrim(key) amp; quot;你]]></description>
    <pubDate>2009-03-05</pubDate>
    <category>VBScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[统一字符大小写]]></title>
    <link>http://www.itxuexi.com/learn/8102.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/vbscriptquot;gt; txt=quot;Welcome to ITxuexi!quot; document.write(ucase(txt)) document.write(quot;lt;br /gt;quot;) document.write(lcase(txt)) lt;/scriptgt; lt;/bodygt; lt;/htmlgt;]]></description>
    <pubDate>2009-03-05</pubDate>
    <category>VBScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[格式化日期与时间]]></title>
    <link>http://www.itxuexi.com/learn/8101.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/vbscriptquot;gt; document.write(FormatDateTime(date(),vbgeneraldate)) document.write(quot;lt;br /gt;quot;) document.write(FormatDateTime(date(),vblongdate)) document.write(quot;lt;br /gt;q]]></description>
    <pubDate>2009-03-05</pubDate>
    <category>VBScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[2008年的倒记时]]></title>
    <link>http://www.itxuexi.com/learn/8100.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;pgt;Countdown to year 3000:lt;/pgt; lt;pgt; lt;script type=quot;text/vbscriptquot;gt; millennium=cdate(quot;1/1/2008 00:00:00quot;) document.write(quot;距离2008还有 quot; amp; DateDiff(quot;mquot;, Now]]></description>
    <pubDate>2009-03-05</pubDate>
    <category>VBScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[显示月份]]></title>
    <link>http://www.itxuexi.com/learn/8099.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;pgt;VBScripts 中的 lt;bgt;MonthNamelt;/bgt; 方法用于获取月份名称：lt;/pgt; lt;script type=quot;text/vbscriptquot;gt; document.write(quot;lt;pgt;quot;) document.write(MonthName(1)) document.writ]]></description>
    <pubDate>2009-03-05</pubDate>
    <category>VBScript</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[自己试试看]]></title>
    <link>http://www.itxuexi.com/learn/8098.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/javascriptquot;gt; var xmlDoc = new ActiveXObject(quot;Microsoft.XMLDOMquot;) xmlDoc.async=quot;falsequot; xmlDoc.load(quot;note_error.xmlquot;) document.write(quot;Error code: quot; + xml]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[自己尝试一下]]></title>
    <link>http://www.itxuexi.com/learn/8097.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/javascriptquot;gt; var xmlDoc = new ActiveXObject(quot;Microsoft.XMLDOMquot;) xmlDoc.async=quot;falsequot; xmlDoc.load(quot;ksdjf.xmlquot;) document.write(quot;Error code: quot; + xmlDoc.p]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[你可以自己试一试]]></title>
    <link>http://www.itxuexi.com/learn/8096.html</link>
    <description><![CDATA[lt;htmlgt; lt;bodygt; lt;script type=quot;text/javascriptquot;gt; var xmlHttp = new ActiveXObject(quot;Microsoft.XMLHTTPquot;) xmlHttp.open(quot;GETquot;, quot;/upload/file/xml/note.xmlquot;, false) xmlHttp.send() xmlDoc=xmlHttp.response]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[substringData() - insert a string to a comment node]]></title>
    <link>http://www.itxuexi.com/learn/8095.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[replaceData() - Replace data in a comment node]]></title>
    <link>http://www.itxuexi.com/learn/8094.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[insertData() - Insert text to a comment node]]></title>
    <link>http://www.itxuexi.com/learn/8093.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[deleteData() - Remove characters from a comment node]]></title>
    <link>http://www.itxuexi.com/learn/8092.html</link>
    <description><![CDATA[lt;htmlgt; lt;headgt; lt;script type=quot;text/javascriptquot; src=quot;/upload/file/xml/loadxmldoc.jsquot;gt; lt;/scriptgt; lt;/headgt; lt;bodygt; lt;script type=quot;text/javascriptquot;gt; xmlDoc=loadXMLDoc(quot;/upload/file/xm]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[appendData() - Append a string to a comment node]]></title>
    <link>http://www.itxuexi.com/learn/8091.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[length - Get a comment node's length]]></title>
    <link>http://www.itxuexi.com/learn/8090.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[data - Get a comment node's data]]></title>
    <link>http://www.itxuexi.com/learn/8089.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[substringData() - insert a string to a comment node]]></title>
    <link>http://www.itxuexi.com/learn/8088.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[splitText() - Split a CDATA node into two nodes]]></title>
    <link>http://www.itxuexi.com/learn/8087.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[replaceData() - Replace data in a CDATA node]]></title>
    <link>http://www.itxuexi.com/learn/8086.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[insertData() - Insert text to a CDATA node]]></title>
    <link>http://www.itxuexi.com/learn/8085.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[deleteData() - Remove characters from a CDATA node]]></title>
    <link>http://www.itxuexi.com/learn/8084.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[appendData() - Append a string to a CDATA node]]></title>
    <link>http://www.itxuexi.com/learn/8083.html</link>
    <description><![CDATA[lt;htmlgt; lt;headgt; lt;script type=quot;text/javascriptquot; src=quot;/upload/file/xml/loadxmldoc.jsquot;gt; lt;/scriptgt; lt;/headgt; lt;bodygt; lt;script type=quot;text/javascriptquot;gt; xmlDoc=loadXMLDoc(quot;/tech/school/do]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[length - Get a CDATA node's length]]></title>
    <link>http://www.itxuexi.com/learn/8082.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[data - Get a CDATA node's data]]></title>
    <link>http://www.itxuexi.com/learn/8081.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[substringData() - insert a string to a text node]]></title>
    <link>http://www.itxuexi.com/learn/8080.html</link>
    <description><![CDATA[]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[splitText() - Split a text node into two nodes]]></title>
    <link>http://www.itxuexi.com/learn/8079.html</link>
    <description><![CDATA[lt;htmlgt; lt;headgt; lt;script type=quot;text/javascriptquot; src=quot;/upload/file/xml/loadxmldoc.jsquot;gt; lt;/scriptgt; lt;/headgt; lt;bodygt; lt;script type=quot;text/javascriptquot;gt; xmlDoc=loadXMLDoc(quot;/upload/file/xm]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>
<item>
    <title><![CDATA[insertData() - Insert text to a text node]]></title>
    <link>http://www.itxuexi.com/learn/8078.html</link>
    <description><![CDATA[lt;htmlgt; lt;headgt; lt;script type=quot;text/javascriptquot; src=quot;/upload/file/xml/loadxmldoc.jsquot;gt; lt;/scriptgt; lt;/headgt; lt;bodygt; lt;script type=quot;text/javascriptquot;gt; xmlDoc=loadXMLDoc(quot;/upload/file/xm]]></description>
    <pubDate>2009-03-04</pubDate>
    <category>XML DOM</category>
    <author>admin</author>
    <comments>IT学习网</comments>
</item>

</channel>
</rss>

