﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-jeffy-最新评论</title><link>http://www.blogjava.net/jeffy/CommentsRSS.aspx</link><description /><language>zh-cn</language><pubDate>Thu, 28 Aug 2008 14:21:47 GMT</pubDate><lastBuildDate>Thu, 28 Aug 2008 14:21:47 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: Ajax以responseXML返回,客户端(IE)不能分析xml问题</title><link>http://www.blogjava.net/jeffy/archive/2009/02/10/137657.html#253991</link><dc:creator>liyaxi</dc:creator><author>liyaxi</author><pubDate>Mon, 09 Feb 2009 22:20:00 GMT</pubDate><guid>http://www.blogjava.net/jeffy/archive/2009/02/10/137657.html#253991</guid><description><![CDATA[得到的是一个数组<br>var str=new Array();<br>var xmlDoc=xmlHttp.responseXML;<br>for(var i=0;i&lt;xmlDoc.length;i++)<br>{<br> str[i]=xmlDoc.getElementsByTagName(&quot;name&quot;)[i].childNodes  [0].nodeValue;<br><br>}<br>注意要判断ie text() 和火狐的textContent()区别<img src ="http://www.blogjava.net/jeffy/aggbug/253991.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/jeffy/" target="_blank">liyaxi</a> 2009-02-10 06:20 <a href="http://www.blogjava.net/jeffy/archive/2009/02/10/137657.html#253991#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Ajax以responseXML返回,客户端(IE)不能分析xml问题</title><link>http://www.blogjava.net/jeffy/archive/2009/02/10/137657.html#253990</link><dc:creator>liyaxi</dc:creator><author>liyaxi</author><pubDate>Mon, 09 Feb 2009 22:07:00 GMT</pubDate><guid>http://www.blogjava.net/jeffy/archive/2009/02/10/137657.html#253990</guid><description><![CDATA[  原文：<a href="http://jiangx.javaeye.com/blog/153066" target="_new" rel="nofollow">http://jiangx.javaeye.com/blog/153066</a><br>1.对XMLHttpRequest请求返回的responseXML进行解析,responseXML是个XMLDOcument对象 <br>假设返回的responseXML为: <br>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; <br>  standal?&gt; <br>&lt;response&gt; <br>  &lt;method&gt;checkName&lt;/method&gt; <br>  &lt;result&gt;1&lt;/result&gt; <br>&lt;/response&gt; <br>则获取method和result值方法为: <br>var response = req.responseXML.documentElement; <br>method = response.getElementsByTagName('method')[0].firstChild.data; <br>result = response.getElementsByTagName('result')[0].firstChild.data; <br><br>2.创建一个XMLDocument对象 <br>function getXMLDocument() { <br>    var xDoc = null; <br>    if (document.implementation &amp;&amp; document.implementation.createDocument) { <br>        xDoc = document.implementation.createDocument(&quot;&quot;, &quot;&quot;, null); <br>    } else { <br>        if ((typeof ActiveXObject) != &quot;undefined&quot;) { <br>            var msXmlAx = null; <br>            try { <br>                msXmlAx = new ActiveXObject(&quot;Msxml2.DOMDocument&quot;); <br>            } <br>            catch (e) { <br>                msXmlAx = new ActiveXObject(&quot;Msxml.DOMDocument&quot;); <br>            } <br>            xDoc = msXmlAx; <br>        } <br>    } <br>    if (xDoc == null || typeof xDoc.load == &quot;undefined&quot;) { <br>        xDoc = null; <br>    } <br>    return xDoc; <br>} <br><br>3.创建一个DOM树 <br>&lt;people&gt; <br>&lt;person first-name=&quot;eric&quot; middle-initial=&quot;h&quot; last-name=&quot;jung&quot;&gt; <br>  &lt;address street=&quot;321 south st&quot; city=&quot;denver&quot; state=&quot;co&quot; country=&quot;usa&quot; /&gt; <br>&lt;/person&gt; <br>&lt;person first-name=&quot;jed&quot; last-name=&quot;brown&quot;&gt; <br>  &lt;address street=&quot;321 north st&quot; city=&quot;atlanta&quot; state=&quot;ga&quot; country=&quot;usa&quot; /&gt; <br>  &lt;address street=&quot;321 south avenue&quot; city=&quot;denver&quot; state=&quot;co&quot; country=&quot;usa&quot; /&gt; <br>&lt;/person&gt; <br>&lt;/people&gt; <br>程序如下: <br>  var doc=getXMLDocument(); <br>  var peopleElem = doc.createElement(&quot;people&quot;); <br>  var personElem1 = doc.createElement(&quot;person&quot;); <br>  personElem1.setAttribute(&quot;first-name&quot;, &quot;eric&quot;); <br>  personElem1.setAttribute(&quot;middle-initial&quot;, &quot;h&quot;); <br>  personElem1.setAttribute(&quot;last-name&quot;, &quot;jung&quot;); <br>  <br>  var addressElem1 = doc.createElement(&quot;address&quot;); <br>  addressElem1.setAttribute(&quot;street&quot;, &quot;321 south st&quot;); <br>  addressElem1.setAttribute(&quot;city&quot;, &quot;denver&quot;); <br>  addressElem1.setAttribute(&quot;state&quot;, &quot;co&quot;); <br>  addressElem1.setAttribute(&quot;country&quot;, &quot;usa&quot;); <br>  personElem1.appendChild(addressElem1); <br>  <br>  var personElem2 = doc.createElement(&quot;person&quot;); <br>  personElem2.setAttribute(&quot;first-name&quot;, &quot;jed&quot;); <br>  personElem2.setAttribute(&quot;last-name&quot;, &quot;brown&quot;); <br>  <br>  var addressElem3 = doc.createElement(&quot;address&quot;); <br>  addressElem3.setAttribute(&quot;street&quot;, &quot;321 north st&quot;); <br>  addressElem3.setAttribute(&quot;city&quot;, &quot;atlanta&quot;); <br>  addressElem3.setAttribute(&quot;state&quot;, &quot;ga&quot;); <br>  addressElem3.setAttribute(&quot;country&quot;, &quot;usa&quot;); <br>  personElem2.appendChild(addressElem3);  <br>  <br>  var addressElem5 = doc.createElement(&quot;address&quot;); <br>  addressElem5.setAttribute(&quot;street&quot;, &quot;321 south avenue&quot;); <br>  addressElem5.setAttribute(&quot;city&quot;, &quot;denver&quot;); <br>  addressElem5.setAttribute(&quot;state&quot;, &quot;co&quot;); <br>  addressElem5.setAttribute(&quot;country&quot;, &quot;usa&quot;); <br>  personElem2.appendChild(addressElem5); <br>  <br>  peopleElem.appendChild(personElem1); <br>  peopleElem.appendChild(personElem2); <br>  doc.appendChild(peopleElem); <br>  alert(doc.xml);//xml属性只对IE管用 <br><img src ="http://www.blogjava.net/jeffy/aggbug/253990.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/jeffy/" target="_blank">liyaxi</a> 2009-02-10 06:07 <a href="http://www.blogjava.net/jeffy/archive/2009/02/10/137657.html#253990#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring中autowire=&amp;quot;byName&amp;quot; /&amp;quot;byType&amp;quot;</title><link>http://www.blogjava.net/jeffy/archive/2009/02/04/32983.html#253281</link><dc:creator>Nassir</dc:creator><author>Nassir</author><pubDate>Wed, 04 Feb 2009 08:55:00 GMT</pubDate><guid>http://www.blogjava.net/jeffy/archive/2009/02/04/32983.html#253281</guid><description><![CDATA[ding ding<img src ="http://www.blogjava.net/jeffy/aggbug/253281.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/jeffy/" target="_blank">Nassir</a> 2009-02-04 16:55 <a href="http://www.blogjava.net/jeffy/archive/2009/02/04/32983.html#253281#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 怎样设计调查问卷[未登录]</title><link>http://www.blogjava.net/jeffy/archive/2009/01/13/114217.html#251148</link><dc:creator>王平</dc:creator><author>王平</author><pubDate>Tue, 13 Jan 2009 08:53:00 GMT</pubDate><guid>http://www.blogjava.net/jeffy/archive/2009/01/13/114217.html#251148</guid><description><![CDATA[高三学生对未来的期望值<img src ="http://www.blogjava.net/jeffy/aggbug/251148.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/jeffy/" target="_blank">王平</a> 2009-01-13 16:53 <a href="http://www.blogjava.net/jeffy/archive/2009/01/13/114217.html#251148#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>彩铃客户有奖调查</title><link>http://www.blogjava.net/jeffy/archive/2008/09/27/114217.html#231414</link><dc:creator>刘亚杰</dc:creator><author>刘亚杰</author><pubDate>Sat, 27 Sep 2008 01:28:00 GMT</pubDate><guid>http://www.blogjava.net/jeffy/archive/2008/09/27/114217.html#231414</guid><description><![CDATA[你是否对我们的服务感到满意，请你提出更多的问题...<img src ="http://www.blogjava.net/jeffy/aggbug/231414.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/jeffy/" target="_blank">刘亚杰</a> 2008-09-27 09:28 <a href="http://www.blogjava.net/jeffy/archive/2008/09/27/114217.html#231414#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Lucene 数据库 全文搜索 相关</title><link>http://www.blogjava.net/jeffy/archive/2008/07/25/141798.html#217583</link><dc:creator>dddd</dc:creator><author>dddd</author><pubDate>Fri, 25 Jul 2008 14:19:00 GMT</pubDate><guid>http://www.blogjava.net/jeffy/archive/2008/07/25/141798.html#217583</guid><description><![CDATA[ddddddddddddd<img src ="http://www.blogjava.net/jeffy/aggbug/217583.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/jeffy/" target="_blank">dddd</a> 2008-07-25 22:19 <a href="http://www.blogjava.net/jeffy/archive/2008/07/25/141798.html#217583#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 错误列表[未登录]</title><link>http://www.blogjava.net/jeffy/archive/2008/03/19/27802.html#187364</link><dc:creator>小米</dc:creator><author>小米</author><pubDate>Wed, 19 Mar 2008 13:49:00 GMT</pubDate><guid>http://www.blogjava.net/jeffy/archive/2008/03/19/27802.html#187364</guid><description><![CDATA[commons-pool-1.2.jar,commons-dbcp-1.2.1.jar,commons-collections.jar放置,就解决。<br> <br>  什么意思啊   ？？？？？？？？？？？？？？？？<img src ="http://www.blogjava.net/jeffy/aggbug/187364.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/jeffy/" target="_blank">小米</a> 2008-03-19 21:49 <a href="http://www.blogjava.net/jeffy/archive/2008/03/19/27802.html#187364#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Subversion安装与客户端使用说明-1</title><link>http://www.blogjava.net/jeffy/archive/2008/02/16/129767.html#180156</link><dc:creator>fuck</dc:creator><author>fuck</author><pubDate>Sat, 16 Feb 2008 02:26:00 GMT</pubDate><guid>http://www.blogjava.net/jeffy/archive/2008/02/16/129767.html#180156</guid><description><![CDATA[说不清楚就不要说<br>warehouse<br>是你自己的项目，如果我硬盘里D盘下一个项目，难道也要用localhost或者192.168.1.10?<br>不通用的做法写出来不是误导人吗？<br><img src ="http://www.blogjava.net/jeffy/aggbug/180156.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/jeffy/" target="_blank">fuck</a> 2008-02-16 10:26 <a href="http://www.blogjava.net/jeffy/archive/2008/02/16/129767.html#180156#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 创业团队相关</title><link>http://www.blogjava.net/jeffy/archive/2007/12/20/167924.html#168958</link><dc:creator>4</dc:creator><author>4</author><pubDate>Thu, 20 Dec 2007 03:03:00 GMT</pubDate><guid>http://www.blogjava.net/jeffy/archive/2007/12/20/167924.html#168958</guid><description><![CDATA[Yewuqun.com（中国业务群）是以网络为载体，通过实名会员制，为各行各业的业<br><br>务人员之间搭建一个互通市场信息，交流业务经验，拓展业务人脉，共享客户资<br><br>源，整合销售渠道，招聘业务精英的平台。<br><br>中国业务群-招聘兼职网络宣传员50名<br>1、要求有充足的上网时间，自己家有宽带。2、熟悉电脑的基本操作3、熟悉基本<br><br>的网络应用，如QQ，博客等。有意者加QQ 8879888 详谈 或者致电：023-<br><br>65412908 13996323710 <img src ="http://www.blogjava.net/jeffy/aggbug/168958.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/jeffy/" target="_blank">4</a> 2007-12-20 11:03 <a href="http://www.blogjava.net/jeffy/archive/2007/12/20/167924.html#168958#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Mondrian demo的安装与运行</title><link>http://www.blogjava.net/jeffy/archive/2007/05/26/27320.html#120149</link><dc:creator>Strive</dc:creator><author>Strive</author><pubDate>Sat, 26 May 2007 03:13:00 GMT</pubDate><guid>http://www.blogjava.net/jeffy/archive/2007/05/26/27320.html#120149</guid><description><![CDATA[一定要学习 OLAP ,,向老大学习<img src ="http://www.blogjava.net/jeffy/aggbug/120149.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/jeffy/" target="_blank">Strive</a> 2007-05-26 11:13 <a href="http://www.blogjava.net/jeffy/archive/2007/05/26/27320.html#120149#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>