<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
  <channel>
    <title><![CDATA[CNLEI.Blog]]></title> 
    <link>http://www.cnlei.com/blog/</link> 
    <description><![CDATA[我只是想留下些痕迹来证明,我曾经真实的存在着.]]></description> 
    <language>zh-cn</language> 
    <copyright><![CDATA[Copyright 2010, CNLEI.Blog]]></copyright> 
    <webMaster><![CDATA[cnlei.y.l@gmail.com (CNLEI)]]></webMaster> 
    <generator>LBS v2.0.313</generator> 
    <pubDate>Thu, 11 Mar 2010 14:26:08 +0800</pubDate> 
    <ttl>60</ttl>
  
    <item>
      <title><![CDATA[JS语法标亮源码: lJSColoration_src.js]]></title> 
      <link><![CDATA[http://www.cnlei.com/blog/article.asp?id=568]]></link> 
      <category><![CDATA[前端交互]]></category> 
      <author><![CDATA[ScriptPower <null@null.com>]]></author> 
      <pubDate>Sat, 23 Jan 2010 20:48:03 +0800</pubDate> 
      <description><![CDATA[重写了下对JavaScript语法解析的代码，现已能准确区分正则与除法，并对正则进行标亮。<br />目前已经实现对以下元素进行语法标亮：<br />&gt;&gt; 单行、多行字符串<br />&gt;&gt; 单行、多行注释<br />&gt;&gt; 正则表达式<br />&gt;&gt; JavaScript保留关键字(词库待补充完善)<br />&gt;&gt; JavaScript对象常用方法(词库待补充完善)<br /><br /><b> 语法案例标亮测试：</b><br /><a href="http://www.cnlei.com/blog/article.asp?id=565" title="http://www.cnlei.com/blog/article.asp?id=565" target="_blank">http://www.cnlei.com/blog/article.asp?id=565</a><br /><b> jQuery v1.3.1 标亮测试：</b><br /><a href="http://www.cnlei.com/blog/article.asp?id=567" title="http://www.cnlei.com/blog/article.asp?id=567" target="_blank">http://www.cnlei.com/blog/article.asp?id=567</a><br /><br />压力测试结果：<br />-------------------<br />测试文件：ext-all-debug.js<br />文件大小：2.28 MB (2,397,109 字节)<br />-------------------<br />在各浏览器下压力测试结果：<br />IE 8&nbsp;&nbsp;: 运行缓慢，提示是否停止执行<br />Firefox&nbsp;&nbsp;: 用时4131毫秒<br />Chrome 4&nbsp;&nbsp;: 用时1164毫秒<br />Opera 10&nbsp;&nbsp;: 用时9359毫秒<br />Safari 4&nbsp;&nbsp;: 用时1281毫秒<br />-------------------<br />测试机器配置：<br />ThinkPAD T400， Intel(R) Core(TM)2 Duo CPU P8400 @ 2.26GHz, 791MHz, 1.98GB内存<br /><br /><b>实现源码如下：</b><div class="code">/*<br />lJSColoration.src.js：完整注释版(约10.8KB)<br />*/<br />if(typeof(window[&quot;lJSF&quot;])==&quot;undefined&quot;){<br />window[&quot;lJSF&quot;]={<br />&nbsp;&nbsp;Version&nbsp;&nbsp;:&quot;2.5.2&lt;std_lv_n_00&gt;&quot;,<br />&nbsp;&nbsp;Author&nbsp;&nbsp;:&quot;CN.LEI&quot;,<br />&nbsp;&nbsp;EMail&nbsp;&nbsp;&nbsp;&nbsp;:&quot;scriptpower@qq.com&quot;,<br />&nbsp;&nbsp;Website&nbsp;&nbsp;:&quot;http&#58;//www.cnlei.com&quot;<br />};}<br />lJSF.obj={};<br />lJSF.obj.JSParser={};<br />/*<br />* lJSParser&nbsp;&nbsp;: Little JavaScript Parser v2.0<br />****************************************************<br />* Author&nbsp;&nbsp;: CN.LEI</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.cnlei.com/blog/feed.asp?q=comment&id=568]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[JS语法标亮测试二：jQuery v1.3.1]]></title> 
      <link><![CDATA[http://www.cnlei.com/blog/article.asp?id=567]]></link> 
      <category><![CDATA[前端交互]]></category> 
      <author><![CDATA[ScriptPower <null@null.com>]]></author> 
      <pubDate>Sat, 23 Jan 2010 20:46:44 +0800</pubDate> 
      <description><![CDATA[<b>jQuery JavaScript Library v1.3.1</b><div class="code">/*!<br />&nbsp;* jQuery JavaScript Library v1.3.1<br />&nbsp;* http&#58;//jquery.com/<br />&nbsp;*<br />&nbsp;* Copyright (c) 2009 John Resig<br />&nbsp;* Dual licensed under the MIT and GPL licenses.<br />&nbsp;* http&#58;//docs.jquery.com/License<br />&nbsp;*<br />&nbsp;* Date: 2009-01-21 20:42:16 -0500 (Wed, 21 Jan 2009)<br />&nbsp;* Revision: 6158<br />&nbsp;*/<br />(function(){<br />var<br />&nbsp;&nbsp;// Will speed up references to window, and allows munging its name.<br />&nbsp;&nbsp;window = this,<br />&nbsp;&nbsp;// Will speed up references to undefined, and allows munging its name.<br />&nbsp;&nbsp;undefined,<br />&nbsp;&nbsp;// Map over jQuery in case of overwrite<br />&nbsp;&nbsp;_jQuery = window.jQuery,<br />&nbsp;&nbsp;// Map over the $ in case of overwrite<br />&nbsp;&nbsp;_$ = window.$,<br />&nbsp;&nbsp;jQuery = window.jQuery = window.$ = function( selector, context ) {<br />&nbsp;&nbsp;&nbsp;&nbsp;// The jQuery object is actually just the init constructor &#39;enhanced&#39;<br />&nbsp;&nbsp;&nbsp;&nbsp;return new jQuery.fn.init( selector, context );<br />&nbsp;&nbsp;},<br />&nbsp;&nbsp;// A simple way to check for HTML strings or ID strings<br />&nbsp;&nbsp;// (both of which we optimize for)<br />&nbsp;&nbsp;quickExpr = /^[^&lt;]*(&lt;(.|\s)+&gt;)[^&gt;]*$|^#([\w-]+)$/,<br />&nbsp;&nbsp;// Is it a simple selector<br />&nbsp;&nbsp;isSimple = /^.[^:#\[\.,]*$/;</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.cnlei.com/blog/feed.asp?q=comment&id=567]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[JS语法标亮测试一:语法测试]]></title> 
      <link><![CDATA[http://www.cnlei.com/blog/article.asp?id=565]]></link> 
      <category><![CDATA[前端交互]]></category> 
      <author><![CDATA[ScriptPower <null@null.com>]]></author> 
      <pubDate>Mon, 18 Jan 2010 15:26:26 +0800</pubDate> 
      <description><![CDATA[<b>语法测试案例：</b><div class="code">var num=a / /**除法中的释注1**//reg// /**除法中的释注2**/2;<br />var str=&#39;引号&#39;//紧跟在引号后的注释<br />var str=&quot;引号&quot;//紧跟在引号后的注释<br />/**释注**///紧跟在多行注释后的单行释注<br />var num=/reg//2/*注释夹杂在除法当中*//2/3/5/6/*注释夹杂在除法当中*//7/8/9;<br />var reg=/reg///我是紧跟在正则后的注释<br />var num=/**释注**//reg// /**除号的行注释**/2;<br />var num=/reg/ / /reg/;&nbsp;&nbsp;//正则除以正则<br />/*******************************************/<br />var num=/reg//2/*注释夹杂在除法当中*//2/3/5/6/*注释夹杂在除法当中*//7/8/9;<br />var reg=/reg///我是紧跟在正则后的注释<br />var str=&quot;绰号&quot;//紧跟在引号后的注释<br />/**释注**///释注<br />var xxx=/**释注**//reg// /**除号的行注释**/2;<br />var num=/reg/ / /reg/ / 2;<br />//单行注释<br />/* 多行注释 */<br />&nbsp;var toString = Object.prototype.toString ;<br />&nbsp;var valueOf = Object.prototype.valueOf ;<br />&nbsp;var xxx=null;<br />var s=&quot;&quot;;<br />var reg=/\//g;<br />var reg=/\///2/*注释*//3/4/5;<br />/******************* 字符串 *******************/<br />var a=&#39;单引号&#39;;<br />var b=&#39;xxx\&#39;xxx\&#39;xxx&quot;xxx&quot;xxxx&#39;;<br />var d=&quot;双引号&quot;;<br />var c=&#39;+&quot;+&quot;+&#39;+&#39;+\&#39;+\&#39;+&#39;+&#39;+&#39;;<br />var sss=&quot;xxx\<br />&nbsp;&nbsp;xxx\<br />&nbsp;&nbsp;xxx\<br />&nbsp;&nbsp;xxx&quot;;<br />var yyy=ss+&#39;xxx\<br />&nbsp;&nbsp;xxx\<br />&nbsp;&nbsp;xxx\<br />&nbsp;&nbsp;xxx&#39;;<br />/******************* 字符串 end *******************/<br />/******************* 正则 *******************/</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.cnlei.com/blog/feed.asp?q=comment&id=565]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[iPhone 声音的奇怪问题: 只有免提或耳机半插入时有声]]></title> 
      <link><![CDATA[http://www.cnlei.com/blog/article.asp?id=564]]></link> 
      <category><![CDATA[随便说说]]></category> 
      <author><![CDATA[CNLEI <null@null.com>]]></author> 
      <pubDate>Sat, 30 May 2009 00:31:51 +0800</pubDate> 
      <description><![CDATA[<b> 只有在以下几种情况下才有声音,其它情况下均无声</b><br />&gt;&gt; 设置的闹钟能正常提示, 有铃声<br />&gt;&gt; 拨打电话时,只有在免提状态下,扬声器有声音<br />&gt;&gt; 在&quot;设置-&gt; 声音-&gt;铃声&quot;里切换不同铃声时,扬声器有声音<br />&gt;&gt;  耳机在完全插入状态下,耳机/扬声器都没有声音;<br />      耳机在半插入状态下(即耳机插孔未完全插入最底层),扬声器有声音,耳机本身却没有声音<span style="color:Red"> (并且要找准这个接触点比较麻烦,只有在打开ipod时,不断地调整耳机插入的接触位置,当发现直到 ipod音量提示条的状态变化了后,才会出现声音器有声音)</span>.<br /><br /><b>已经尝试过以下操作,但仍未解决声音问题</b><br />&gt;&gt; 左侧的静音键按钮没有显示红点(即非静音状态);<br />&gt;&gt; 重启iphone和&quot;设置-通用-还原-还原所有设置&quot; 都试了;<br />&gt;&gt; 按&quot;<a href="http://www.weiphone.com/thread-80959-1-1.html" title="http://www.weiphone.com/thread-80959-1-1.html" target="_blank">http://www.weiphone.com/thread-80959-1-1.html</a>&quot; 这篇贴子所提示的方法操作了,还是无法解决.<br /><br /><b>其它说明:</b><br />&gt;&gt; iphone系统版本为: 1.1.2<br />&gt;&gt; 昨天穿衣裤时, iphone从裤兜里滑了出来掉在了地上,地面为地板瓷砖, 高度约为0.5米.<span style="color:Red"> (但愿不是因为从这半米左右的高度摔了一下而引起的;如果真是这样,那iphone的搞摔能力就太弱了-_-)</span>]]></description>
      <wfw:commentRss><![CDATA[http://www.cnlei.com/blog/feed.asp?q=comment&id=564]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[实例:arguments.callee的应用]]></title> 
      <link><![CDATA[http://www.cnlei.com/blog/article.asp?id=563]]></link> 
      <category><![CDATA[前端交互]]></category> 
      <author><![CDATA[CNLEI <null@null.com>]]></author> 
      <pubDate>Thu, 09 Apr 2009 14:09:45 +0800</pubDate> 
      <description><![CDATA[<div class="code">function f(x){<br />&nbsp;&nbsp;alert(x);<br />&nbsp;return arguments.callee;<br />}<br />f(0)(1)(2)(3)(4)(5)(6)(7)(8)(9);</div><div class="code">function f(){<br />&nbsp;&nbsp;var a=arguments,i,l=a.length;<br />&nbsp;&nbsp;for(i=0; i&lt;l;i++){<br />&nbsp;&nbsp;&nbsp;&nbsp;alert(a[i]);<br />&nbsp;&nbsp;}<br />&nbsp;return arguments.callee;<br />}<br />f(0)(1,2)(3,4,5)(6,7,8,9);</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.cnlei.com/blog/feed.asp?q=comment&id=563]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[[分享]2009年驾驶员交通安全法规考试练习(iPhone版)]]></title> 
      <link><![CDATA[http://www.cnlei.com/blog/article.asp?id=562]]></link> 
      <category><![CDATA[资源分享]]></category> 
      <author><![CDATA[CNLEI <null@null.com>]]></author> 
      <pubDate>Mon, 30 Mar 2009 13:34:51 +0800</pubDate> 
      <description><![CDATA[<span style="color:#666">和同事同学一起报了周末班学车,同学花了10块大洋买了张模拟题光盘,但一张光盘只能在两台电脑上注册安装.安装了后,才发现软件制作得非常烂,操作极不方便.<br />帮助文件中提示说,只能使用小键盘数字键来输入;而笔记本的数字开启后,它竟然不能识别.于是打开它的安装目录打到里面的数据库文件,把数据导出来,自己做了个iphone版的交规考试练习. </span><br /><br />在线iphone版:<br /><a href="http://www.cnlei.com/c1/" title="http://www.cnlei.com/c1/" target="_blank">http://www.cnlei.com/c1/</a><br /><br />如果你的iphone装了apache的话,可以下载下面的压缩包文件:<br /><a href="http://www.cnlei.com/c1/DriverTest.rar" title="http://www.cnlei.com/c1/DriverTest.rar" target="_blank">http://www.cnlei.com/c1/DriverTest.rar</a><br />解压后放到下面这个目录:<br />/var/root/sites/c1/ (注:<span style="color:Red"> c1 </span>为自建子文件夹)<br />然后可使用Safari通过下述地址访问练习:<br /><a href="http://127.0.0.1/c1/" title="http://127.0.0.1/c1/" target="_blank">http://127.0.0.1/c1/</a>]]></description>
      <wfw:commentRss><![CDATA[http://www.cnlei.com/blog/feed.asp?q=comment&id=562]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[资料：关于document.createDocumentFragment()]]></title> 
      <link><![CDATA[http://www.cnlei.com/blog/article.asp?id=561]]></link> 
      <category><![CDATA[前端交互]]></category> 
      <author><![CDATA[CNLEI <null@null.com>]]></author> 
      <pubDate>Tue, 24 Mar 2009 15:36:53 +0800</pubDate> 
      <description><![CDATA[documentFragment 是一個無父對象的document對象. <br />他支持以下DOM2方法:<br />appendChild, cloneNode, hasAttributes, hasChildNodes, insertBefore, normalize, removeChild, replaceChild. <br />也支持以下DOM2屬性:<br />attributes, childNodes, firstChild, lastChild, localName, namespaceURI, nextSibling, nodeName, nodeType, nodeValue, ownerDocument, parentNode, prefix, previousSibling, textContent. <br />其他方法可以將documentFragment 作為一個參數，（比如Node的 appendChild和insertBefore 方法），這樣，fragment 就可以被追加到父對象中。<br />Example：<div class="code">var frag = document.createDocumentFragment();<br />frag.appendChild(document.createTextNode(&#39;Ipsum Lorem&#39;));<br />document.body.appendChild(frag);</div><br />===========================================<br />document.createDocumentFragment()说白了就是为了节约使用DOM。每次JavaScript对DOM的操作都会改变页面的变现，并重新刷新整个页面，从而消耗了大量的时间。为解决这个问题，可以创建一个文档碎片，把所有的新节点附加其上，然后把文档碎片的内容一次性添加到document中。<div class="code">var oui=document.getElementById(&quot;oItem&quot;);<br />for(var i=0;i&lt;10;i++)<br />{<br />&nbsp;var oli=document.createElement(&quot;li&quot;);<br />&nbsp;oui.appendChild(oli);<br />&nbsp;oli.appendChild(document.createTextNode(&quot;Item&quot;+i));</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.cnlei.com/blog/feed.asp?q=comment&id=561]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[资料:如何从 HTA 中启动应用程序]]></title> 
      <link><![CDATA[http://www.cnlei.com/blog/article.asp?id=560]]></link> 
      <category><![CDATA[前端交互]]></category> 
      <author><![CDATA[CNLEI <null@null.com>]]></author> 
      <pubDate>Thu, 12 Mar 2009 15:11:34 +0800</pubDate> 
      <description><![CDATA[来源: <br /><a href="http://www.microsoft.com/china/technet/community/scriptcenter/resources/hey051031.mspx" title="http://www.microsoft.com/china/technet/community/scriptcenter/resources/hey051031.mspx" target="_blank">http://www.microsoft.com/china/technet/community/scriptcenter/resources/hey051031.mspx</a><br /><br />如何从 HTA 中启动应用程序？<br />问：<br /><br />您好，脚本专家！对于 HTA，有没有什么可以替代 Wscript.Shell 命令？我需要运行某个应用程序并指定要打开的文件。<br /><br />-- DL<br />答：<br /><br />您好，DL。是的，我们确实知道这样的命令，可以在 HTA 中使用并可以替代 Wscript.Shell 命令，我们一会儿就会向您介绍。不过，在介绍它之前，我们应注意到您实际上可以在 HTA 中使用 Wscript.Shell 对象。这是一个常会引发混淆之处：因为您在 HTA 中无法使用某些命令（如 Wscript.Echo 和 Wscript.Sleep），人们就认为您在 HTA 中无法使用任何 WSH 命令。<br /><br />继续之前，还有一个问题：为什么您在 HTA 中无法使用 Wscript.Echo 和 Wscript.Sleep 呢？是这样，这些方法是 Wscript 对象的属性，而您是无法创建 Wscript 对象实例。Wscript 对象是自动创建的，而且只有在您运行 Windows Script Host（即 Wscript.exe 或 Cscript.exe）时才会创建。正因为这一点，才可以说以下脚本绝对有效：<div class="code">Wscript.Echo &quot;Hey.&quot;</div><br />请注意，我们没有创建 Wscript 对象，该对象是在我们调用 Windows Script Host 时自动创建的。<br /><br />但这只限于 Wscript 对象。还有其他您可以创建的 WSH 对象，包括 Shell 对象。例如，下面是一个简单的小 HTA，它创建 Wscript.Shell 对象，然后运行 Notepad.exe（并在此过程中打开文件 C:\Scripts\Test.txt）：<div class="code">&lt;html&gt; <br />&lt;head&gt; <br />&lt;script language=&quot;VBScript&quot;&gt; <br /><br />&nbsp;Sub RunProgram <br />&nbsp;Set objShell = CreateObject(&quot;Wscript.Shell&quot;)<br />&nbsp;objShell.Run &quot;notepad.exe c:\scripts\test.txt&quot;</div>]]></description>
      <wfw:commentRss><![CDATA[http://www.cnlei.com/blog/feed.asp?q=comment&id=560]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[参考: 40个轻量级 JavaScript 库]]></title> 
      <link><![CDATA[http://www.cnlei.com/blog/article.asp?id=559]]></link> 
      <category><![CDATA[前端交互]]></category> 
      <author><![CDATA[CNLEI <null@null.com>]]></author> 
      <pubDate>Fri, 06 Mar 2009 14:26:56 +0800</pubDate> 
      <description><![CDATA[流行的 JavaScript 库不胜枚举，jQuery, MooTools, Prototype, Dojo, YUI。这些 JavaScript  库功能丰富，加上它们的插件，几乎能胜任任何工作，然而这是有代价的，这些库往往导致你的网页尺寸臃肿。在某些场合，如果你只想完成特定的工作，可以使用一些功能更专一的轻量库，本文介绍了40个非常出色的轻量级  JavaScript 库。<br/>
		1. 表单相关 <br/>
<a href="http://www.formassembly.com/wForms/"><strong>wForms</strong></a><br/>
一个低调的开源项目，简化了绝大多数常用 JavaScript 表单功能，包含可以直接使用的表单验证功能，另外，还包含强大的表单同步以及表单条件判断功能。<br/>
<a href="http://www.formassembly.com/wForms/"><img height="116" src="http://www.comsharp.com/Writable/Resource/_random_/2009-03-05/wforms.gif" alt="wForms" borderwidth="480" /></a><br/>
<br/>
<a href="http://www.drlongghost.com/validanguage.php"><strong>Validanguage</strong></a><br/>
又一个低调的 JavaScript 表单验证框架。它拥有集成逻辑，一些设置可以针对全局，单个表单或单个对象。提供两个API，集成 AJAX 支持，缓存，以及回调函数。它提供类似 HTML 的 API 语句，以及面向对象的 JavaScript API 。<br/>
<a href="http://www.drlongghost.com/validanguage.php"><img height="116" src="http://www.comsharp.com/Writable/Resource/_random_/2009-03-05/validanguage.gif" alt="Validanguage" borderwidth="480" /></a><br/>
<br/>
<a href="http://www.livevalidation.com/"><strong>LiveValidation</strong></a><br/>
一个轻量的表单验证库。除了传统的验证功能，还提供实时验证，可以一边输入一遍验证。<strong>Ruby on Rails</strong> 用户可能会发现这个库非常好用，因为他们的命名规则和参数十分近似。该库既有独立版本，又有一个 Prototype 版本。<br/>
<a href="http://www.livevalidation.com/"><img height="116" width="480" src="http://www.comsharp.com/Writable/Resource/_random_/2009-03-05/live-validation.gif" alt="LiveValidation" /></a><br/>
<br/>
<a href="http://yav.sourceforge.net/en/index.html"><strong>yav</strong></a><br/>
一个强大，灵活，可扩展的表单验证库。支持各种场合，从简单的如日期，电子邮件地址以及整数的验证，到复杂的，如正则表达式。内置 AJAX 支持，输出的错误消息可以定位到对象级。<br/>]]></description>
      <wfw:commentRss><![CDATA[http://www.cnlei.com/blog/feed.asp?q=comment&id=559]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[资料:网页中常用数字/字母序号与代码对照表]]></title> 
      <link><![CDATA[http://www.cnlei.com/blog/article.asp?id=558]]></link> 
      <category><![CDATA[前端交互]]></category> 
      <author><![CDATA[CNLEI <null@null.com>]]></author> 
      <pubDate>Fri, 06 Mar 2009 13:12:26 +0800</pubDate> 
      <description><![CDATA[<style type="text/css">
h2.titX {font-size:18px;margin:2px;padding:5px 0 2px;color:#f30;}
ul.chrX,
ul.chrX li {list-style-type:none;}
ul.chrX {margin:2px;padding:0px;width:120px;border:1px solid #ccc;padding:10px;font-family:tahoma,"宋体",Geneva,Arial,sans-serif;font-size:16px;}
ul.chrX li span {color:#080;}
</style>
<h2 class="titX">数字序号</h2>
<ul class="chrX">
<li>&#9312;&nbsp;&nbsp;<span>&amp;#9312;</span></li>
<li>&#9313;&nbsp;&nbsp;<span>&amp;#9313;</span></li>
<li>&#9314;&nbsp;&nbsp;<span>&amp;#9314;</span></li>
<li>&#9315;&nbsp;&nbsp;<span>&amp;#9315;</span></li>
<li>&#9316;&nbsp;&nbsp;<span>&amp;#9316;</span></li>
<li>&#9317;&nbsp;&nbsp;<span>&amp;#9317;</span></li>
<li>&#9318;&nbsp;&nbsp;<span>&amp;#9318;</span></li>
<li>&#9319;&nbsp;&nbsp;<span>&amp;#9319;</span></li>
<li>&#9320;&nbsp;&nbsp;<span>&amp;#9320;</span></li>
<li>&#9321;&nbsp;&nbsp;<span>&amp;#9321;</span></li>
<li>&#9322;&nbsp;&nbsp;<span>&amp;#9322;</span></li>
<li>&#9323;&nbsp;&nbsp;<span>&amp;#9323;</span></li>
<li>&#9324;&nbsp;&nbsp;<span>&amp;#9324;</span></li>
<li>&#9325;&nbsp;&nbsp;<span>&amp;#9325;</span></li>
<li>&#9326;&nbsp;&nbsp;<span>&amp;#9326;</span></li>
<li>&#9327;&nbsp;&nbsp;<span>&amp;#9327;</span></li>
<li>&#9328;&nbsp;&nbsp;<span>&amp;#9328;</span></li>
<li>&#9329;&nbsp;&nbsp;<span>&amp;#9329;</span></li>
<li>&#9330;&nbsp;&nbsp;<span>&amp;#9330;</span>]]></description>
      <wfw:commentRss><![CDATA[http://www.cnlei.com/blog/feed.asp?q=comment&id=558]]></wfw:commentRss>
    </item>
      
  </channel>
</rss>
