<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feed.fantxi.com/styles/feedsky7.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feed.fantxi.com" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feed.feedsky.com/fantxi" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 23 Dec 2010 23:18:34 GMT</lastBuildDate><title>范特西博客</title><description>几乎任何事都有可能-.*..做自己喜欢做的事</description><image><url>http://creativecommons.org/images/public/somerights20.png</url><title>范特西博客</title><link>http://www.fantxi.com/blog/</link></image><link>http://www.fantxi.com/blog/</link><copyright>Powered by SaBlog-X. Copyright (C) 2003-2010.</copyright><pubDate>Fri, 24 Dec 2010 00:19:38 GMT</pubDate><item><title>在VIM里 调用多种浏览器 预览html php 等文件</title><link>http://www.fantxi.com/blog/vim-view-in-browser-func/</link><description>Kairyou's Blog ( http://www.fantxi.com/blog/ ) : &lt;p&gt;
	最近这段时间睡眠严重不足，脑袋发晕的时候就要放送下，so改善vim。产生个想法：把自己喜欢的editplus的功能都搞到vim上面来。这个就是其中之一：在浏览器中预览当前文件。有时间的话，可能要写点从editplus转型到VIM的东西。&lt;/p&gt;
&lt;div&gt;
	优点1：&lt;br /&gt;
	囊括了主要的浏览器：chrome、firefox、oprea、ie、ietester（随自己喜欢可以增加更多，比如safari），&lt;br /&gt;
	浏览器的简称：cr、ff、op、ie、ie6、ie7、ie8、ie9、iea，简称、路径以键值对方式都保存到browsers中。&lt;br /&gt;
	上面的简称大部分人应该都明白了，ie就是系统默认的ie，最后一个iea是在ietester中使用所有版本的ie同时预览（IE5.5-IE9）。&lt;br /&gt;
	IETester 的Arguments可以见 : &lt;a href=&quot;http://www.my-debugbar.com/wiki/IETester/CommandLineArguments&quot;&gt;http://www.my-debugbar.com/wiki/IETester/CommandLineArguments&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	优点2：&lt;br /&gt;
	本地文件自动以file://开头或http://开头的两种方式预览。如果文件在htdocs就用http方式打开，否则用file方式。&lt;/div&gt;
&lt;div&gt;
	file://开头的地址预览html一般没问题，但是预览php或aspx等就显得苍白无力了。这里可以设置一个htdocs/wwwroot的文件夹地址，然后预览的时候匹配文件是否在这个文件夹内(支持子目录)，如果在就用http://方式打开，否则就用file://方式。&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	无论前端开发者或者程序员都及其适合。自夸完毕，下面说下使用：&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	在_vimrc中加入下面的代码，然后按F4+cr - 在chrome预览，F4+ff&amp;nbsp; - 在firefox下预览&amp;hellip;&amp;hellip;。方式就是F4+浏览器简称（应该比用F4+1234的数字形式便于记忆）。当然，这个完全可以自己diy的。&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	下面fuc里面的浏览器地址需要自己修改，我的文件夹目录和你的可能是有不同的。还有htdocs文件夹、本地的预览的端口号，我使用的是8090.&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	&lt;pre class=&quot;brush:bash;&quot;&gt;
	&amp;quot; 在浏览器预览 for win32
function! ViewInBrowser(name)
    let file = expand(&amp;quot;%:p&amp;quot;)
    exec &amp;quot;:update &amp;quot; . file
    let browsers = {&amp;quot;cr&amp;quot;:&amp;quot;D:\\WebDevelopment\\Browser\\Chrome\\Chrome.exe&amp;quot;, &amp;quot;ff&amp;quot;:&amp;quot;D:\\WebDevelopment\\Browser\\Firefox\\Firefox.exe&amp;quot;,         &amp;quot;op&amp;quot;:&amp;quot;D:\\WebDevelopment\\Browser\\Opera\\opera.exe&amp;quot;, &amp;quot;ie&amp;quot;:&amp;quot;C:\\progra~1\\intern~1\\iexplore.exe&amp;quot;, &amp;quot;ie6&amp;quot;:&amp;quot;D:\\WebDevelopment\\Browser\\IETester\\IETester.exe -ie6&amp;quot;, &amp;quot;ie7&amp;quot;:&amp;quot;D:\\WebDevelopment\\Browser\\IETester\\IETester.exe -ie7&amp;quot;,         &amp;quot;ie8&amp;quot;:&amp;quot;D:\\WebDevelopment\\Browser\\IETester\\IETester.exe -ie8&amp;quot;, &amp;quot;ie9&amp;quot;:&amp;quot;D:\\WebDevelopment\\Browser\\IETester\\IETester.exe -ie9&amp;quot;,         &amp;quot;iea&amp;quot;:&amp;quot;D:\\WebDevelopment\\Browser\\IETester\\IETester.exe -all&amp;quot;}
    let htdocs=&amp;#39;E:\\@apmxe\\htdocs\\&amp;#39;
    let strpos = stridx(file, substitute(htdocs, &amp;#39;\\\\&amp;#39;, &amp;#39;\&amp;#39;, &amp;quot;g&amp;quot;))
    if strpos == -1
       exec &amp;quot;:silent !start &amp;quot;. browsers[a:name] .&amp;quot; file://&amp;quot; . file
    else
        let file=substitute(file, htdocs, &amp;quot;http://127.0.0.1:8090/&amp;quot;, &amp;quot;g&amp;quot;)
        let file=substitute(file, &amp;#39;\\&amp;#39;, &amp;#39;/&amp;#39;, &amp;quot;g&amp;quot;)
        exec &amp;quot;:silent !start &amp;quot;. browsers[a:name] file
    endif
endfunction
nmap &amp;lt;f4&amp;gt;cr :call ViewInBrowser(&amp;quot;cr&amp;quot;)&amp;lt;cr&amp;gt;
nmap &amp;lt;f4&amp;gt;ff :call ViewInBrowser(&amp;quot;ff&amp;quot;)&amp;lt;cr&amp;gt;
nmap &amp;lt;f4&amp;gt;ie6 :call ViewInBrowser(&amp;quot;ie6&amp;quot;)&amp;lt;cr&amp;gt;&lt;/pre&gt;
&lt;/div&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/453339159/fantxi/feedsky/s.gif?r=http://www.fantxi.com/blog/vim-view-in-browser-func/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/fantxi/453339159/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/fantxi/453339159/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class=&quot;fsflare&quot;&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=3448a88a95b0364291dbadc8d7c055a6&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=3448a88a95b0364291dbadc8d7c055a6&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=462834c6f3fe6d56ef3a43e746c0bb04&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=462834c6f3fe6d56ef3a43e746c0bb04&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description><category domain="http://www.fantxi.com/blog/tag/%E6%B5%8F%E8%A7%88%E5%99%A8/">浏览器</category><category domain="http://www.fantxi.com/blog/tag/vim/">vim</category><category domain="http://www.fantxi.com/blog/category/1/">WebDev</category><pubDate>Fri, 24 Dec 2010 07:18:34 +0800</pubDate><author>kairyou@qq.com(kairyou)</author><guid isPermaLink="false">http://www.fantxi.com/blog/vim-view-in-browser-func/</guid><dc:creator>kairyou@qq.com(kairyou)</dc:creator><fs:srclink>http://www.fantxi.com/blog/vim-view-in-browser-func/</fs:srclink><fs:srcfeed>http://www.fantxi.com/blog/rss.php</fs:srcfeed><fs:itemid>feedsky/fantxi/~1224394/453339159/1226276</fs:itemid></item><item><title>长沙、凤凰古城 往返 汽车火车</title><link>http://www.fantxi.com/blog/changsha-fenghuang/</link><description>Kairyou's Blog ( http://www.fantxi.com/blog/ ) : &lt;p&gt;
	长沙-凤凰 汽车：&lt;/p&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	价格都是130左右，行程大概是5个小时&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	汽车西站有上午8：30和11：00的，在凤凰汽车站下车（离城区有一段路，需打的）。&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	南站有上午10点的，和下午4点的。&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	火车站附近的长城宾馆，上午8：30.和10：00、下午2：00、下午4点的，到凤凰的天下凤凰大酒店下车。&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	长沙-凤凰 火车：&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	长沙坐火车-吉首（8个小时左右），吉首火车站坐汽车-凤凰汽车站（一个多小时）&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	凤凰-长沙 汽车：&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	凤凰汽车站-长沙汽车西站&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	车型: 49座金龙旅游车，用时:约5小时&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	发车时间：上午：08：30、10：30 ；下午：15：00、17：30&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	凤凰汽车站-长沙汽车南站&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	车型: 49座金龙旅游车，用时:约5小时&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	发车时间：下午：16.30（每天一班）&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	凤凰天下凤凰大酒店-长沙韶山北路湘泉宾馆（火车站附近）&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	车型：德国进口豪华旅游大巴,带洗手间，用时:约5.5小时&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	发车时间：上午：08：30、11：00；下午：14：00 、16：00&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	票价都是130元/张，路程都大约450公里。&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	以上都是搜索到的。&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	我去凤凰的线路：长沙坐火车-怀化（7个小时左右，凌晨6点左右到，卧铺大概120左右），怀化汽车站-凤凰（好像3-4个小时，目前在修路），下车后步行几百米就到城区了。&lt;/div&gt;
&lt;div&gt;
	汽车方便，火车安全。&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	回长沙了。湖南基本都下学了，凤凰的雪景还是不错的。我回长沙是直接到凤凰汽车站做车，上午10:00出发，终点是长沙汽车西站，现在的价格是120。&lt;/div&gt;
&lt;div&gt;
	凤凰的的士司机比较狠，看你是外地人他就不打表的。感谢小杨送我们去汽车站坐车，下车时路上有积水，还把她的鞋子弄脏了。&lt;/div&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/453339160/fantxi/feedsky/s.gif?r=http://www.fantxi.com/blog/changsha-fenghuang/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/fantxi/453339160/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/fantxi/453339160/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class=&quot;fsflare&quot;&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=ff15e32f4ce728d254d50f6f560955c3&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=ff15e32f4ce728d254d50f6f560955c3&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=bfbbb9af3aea0d26e4089b6c91e19c26&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=bfbbb9af3aea0d26e4089b6c91e19c26&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description><category domain="http://www.fantxi.com/blog/category/2/">LifeStyle</category><category domain="http://www.fantxi.com/blog/tag/%E5%87%A4%E5%87%B0/">凤凰</category><category domain="http://www.fantxi.com/blog/tag/%E9%95%BF%E6%B2%99/">长沙</category><pubDate>Mon, 13 Dec 2010 22:02:31 +0800</pubDate><author>kairyou@qq.com(kairyou)</author><guid isPermaLink="false">http://www.fantxi.com/blog/changsha-fenghuang/</guid><dc:creator>kairyou@qq.com(kairyou)</dc:creator><fs:srclink>http://www.fantxi.com/blog/changsha-fenghuang/</fs:srclink><fs:srcfeed>http://www.fantxi.com/blog/rss.php</fs:srcfeed><fs:itemid>feedsky/fantxi/~1224394/453339160/1226276</fs:itemid></item><item><title>PHP 读取大文件的X行到Y行的内容</title><link>http://www.fantxi.com/blog/archives/685/</link><description>Kairyou's Blog ( http://www.fantxi.com/blog/ ) : &lt;p&gt;
	最新写了个小程序，需要读取一个文件的几行内容，但是文件比较大，所以研究了下PHP读取大文件的几行内容的方法，写了一个方法，代码如下(加了注释)：&lt;/p&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	&lt;pre class=&quot;brush:php;&quot;&gt;
	//返回文件从X行到Y行的内容(支持php5、php4)
function getFileLines($filename, $startLine = 1, $endLine=50, $method=&amp;#39;rb&amp;#39;) {
	$content = array();
	$count = $endLine - $startLine;
	if(version_compare(PHP_VERSION, &amp;#39;5.1.0&amp;#39;, &amp;#39;&amp;gt;=&amp;#39;)){// 判断php版本（因为要用到SplFileObject，PHP&amp;gt;=5.1.0）
        $fp = new SplFileObject($filename, $method);
        $fp-&amp;gt;seek($startLine-1);// 转到第N行, seek方法参数从0开始计数
 		for($i = 0; $i &amp;lt;= $count; ++$i) {
 			$content[]=$fp-&amp;gt;current();// current()获取当前行内容
 			$fp-&amp;gt;next();// 下一行
		 }
	}else{//PHP&amp;lt;5.1
		$fp = fopen($filename, $method);
		if(!$fp) return &amp;#39;error:can not read file&amp;#39;;
		for ($i=1;$i&amp;lt;$startLine;++$i) {// 跳过前$startLine行
			fgets($fp);
		}
		for($i;$i&amp;lt;=$endLine;++$i){
			$content[]=fgets($fp);// 读取文件行内容
		}
		fclose($fp);
	}
	return array_filter($content); // array_filter过滤：false,null,&amp;#39;&amp;#39;
}&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;
	Ps:&lt;br /&gt;
	上面都没加&amp;quot;读取到末尾的判断&amp;quot;：!$fp-&amp;gt;eof() 或者 !feof($fp)，加上这个判断影响效率，自己加上测试很多很多很多行的运行时间就晓得了，而且这里加上也完全没必要。&lt;br /&gt;
	从上面的函数就可以看出来使用SplFileObject比下面的fgets要快多了，特别是文件行数非常多、并且要取后面的内容的时候。fgets要两个循环才可以，并且要循环$endLine次。&lt;br /&gt;
	此方法花了不少功夫，测试了很多中写法，就是想得出效率最高的方法。哪位觉得有值得改进的欢迎赐教。&lt;/p&gt;
&lt;p&gt;
	&lt;br /&gt;
	使用，返回35270行-35280行的内容：&lt;/p&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	&lt;pre class=&quot;brush:php;&quot;&gt;
	echo &amp;#39;&amp;lt;pre&amp;gt;&amp;#39;;var_dump(getFileLines(&amp;#39;test.php&amp;#39;,35270,35280));&lt;/pre&gt;
&lt;/div&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/453339161/fantxi/feedsky/s.gif?r=http://www.fantxi.com/blog/archives/685/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/fantxi/453339161/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/fantxi/453339161/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class=&quot;fsflare&quot;&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=ddd42e0f9ae4b0376332731cbb6d71c5&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=ddd42e0f9ae4b0376332731cbb6d71c5&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=eae7dc25088dfb6d17d481813f3f0762&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=eae7dc25088dfb6d17d481813f3f0762&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description><category domain="http://www.fantxi.com/blog/tag/%E5%A4%A7%E6%96%87%E4%BB%B6/">大文件</category><category domain="http://www.fantxi.com/blog/tag/php/">php</category><category domain="http://www.fantxi.com/blog/category/1/">WebDev</category><pubDate>Fri, 03 Dec 2010 06:54:03 +0800</pubDate><author>kairyou@qq.com(kairyou)</author><guid isPermaLink="false">http://www.fantxi.com/blog/archives/685/</guid><dc:creator>kairyou@qq.com(kairyou)</dc:creator><fs:srclink>http://www.fantxi.com/blog/archives/685/</fs:srclink><fs:srcfeed>http://www.fantxi.com/blog/rss.php</fs:srcfeed><fs:itemid>feedsky/fantxi/~1224394/453339161/1226276</fs:itemid></item><item><title>开始尝试使用kissy</title><link>http://www.fantxi.com/blog/archives/684/</link><description>Kairyou's Blog ( http://www.fantxi.com/blog/ ) : &lt;p&gt;
	从kissy suggest出来，我就有种强烈的预感，淘宝团队肯定会整个js库出来，果不其然&lt;a href=&quot;http://github.com/kissyteam/kissy&quot; target=&quot;_blank&quot;&gt;Kissy&lt;/a&gt;问世了。&lt;/p&gt;

&lt;div&gt;
	我使用kissy的理由：1.kissy的思想我比较喜欢，2.比较轻巧，3.常用的功能都有了，4.如果不满足现有功能方便自己扩展。&lt;/div&gt;
&lt;div&gt;
	熟悉jquery、yui、mt等类库的人花点时间应该都比较容易上手的。感觉官方的文档还需要改进，如果做到像jq官方那样，花几个小时应该就可以掌握了。&lt;/div&gt;

&lt;div&gt;
	我找了些可以帮助熟悉kissy的文章：&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	http://www.slideshare.net/lijing00333/kissy-5223489&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	http://ghsky.com/tag/kissy&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	http://lifesinger.org/blog/2010/08/kissy-briefings-2/&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	http://lifesinger.org/blog/2010/09/release-kissy-1-1-5/&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	http://kissyui.com/blog/&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	http://kissyteam.github.com/docs/kissy/quickstart/&lt;/div&gt;
&lt;div id=&quot;cke_pastebin&quot;&gt;
	http://kissyteam.github.com/kissy/docs/index.html&lt;/div&gt;
&lt;div&gt;
	时间允许，以后我会把自己使用遇到的问题或笔记分享出来。&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
	另外发现百度经验用上html5了。看了百度几个频道的js库，知道、经验、百度hi内页用的：http://img.baidu.com/js/tangram-1.2.0.js，有啊用的：http://co.youa.baidu.com/picture/p/js/core-mini.js，目前大的公司因为开发团队的细分，导致了js库不太统一，淘宝目前也是kissy、yui并存。我觉得前端开发者在参加不同的前端交流会的同时，也应该内部沟通，如果一个公司开发几种js库，干嘛不集中经历开发一个呢。这样js库会更完善、提高了重用、降低了劳动成本。&lt;/div&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/453339162/fantxi/feedsky/s.gif?r=http://www.fantxi.com/blog/archives/684/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/fantxi/453339162/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/fantxi/453339162/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class=&quot;fsflare&quot;&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=031232a746732dcc2d5e45d3746e2978&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=031232a746732dcc2d5e45d3746e2978&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=fe8400ea92f5f29dcc6e45a08b3df341&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=fe8400ea92f5f29dcc6e45a08b3df341&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description><category domain="http://www.fantxi.com/blog/tag/kissy/">kissy</category><category domain="http://www.fantxi.com/blog/category/1/">WebDev</category><pubDate>Wed, 27 Oct 2010 10:45:29 +0800</pubDate><author>kairyou@qq.com(kairyou)</author><guid isPermaLink="false">http://www.fantxi.com/blog/archives/684/</guid><dc:creator>kairyou@qq.com(kairyou)</dc:creator><fs:srclink>http://www.fantxi.com/blog/archives/684/</fs:srclink><fs:srcfeed>http://www.fantxi.com/blog/rss.php</fs:srcfeed><fs:itemid>feedsky/fantxi/~1224394/453339162/1226276</fs:itemid></item><item><title>firefox 4.0beta 出来了</title><link>http://www.fantxi.com/blog/archives/683/</link><description>Kairyou's Blog ( http://www.fantxi.com/blog/ ) : &lt;p&gt;
	ff4比ff3.6.x要快多了，ff3.6有时感觉非常卡，尤其是在用firebug的时。&lt;a href=&quot;http://www.mozilla.com/en-US/firefox/beta/&quot; target=&quot;_blank&quot;&gt;firefox4下载地址&lt;/a&gt;，加上&lt;a href=&quot;https://addons.mozilla.org/zh-TW/firefox/addon/15003/?src=external-discovery-pane&quot; target=&quot;_blank&quot;&gt;Compatibility Reporter&lt;/a&gt;这个插件就可以使用大部分的ff3.6下的扩展了。另外最新的是&lt;a href=&quot;ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/devpreview/&quot; target=&quot;_blank&quot;&gt;开发预览版&lt;/a&gt;，目前是40.b3pre。再推荐个下载管理器扩展，&lt;a href=&quot;http://dmextension.mozdev.org/&quot; target=&quot;_blank&quot;&gt;Download Manager Tweak&lt;/a&gt;，觉得比Download Statusbar要好用（目前Download Statusbar在FFb2下不能用）。&lt;/p&gt;
&lt;p&gt;
	ff4虽然界面帅了点（像opera），开始使用速度快了点，使用时间长点，还是变得卡那么下（这点还是让人讨厌）。chrome已经成为我常用的浏览器了。ff的一些插件很强大，做开发必不可少，国内大部分使用ff的应该是开发者吧，对于一个普通用户，chrome要比ff容易接受的多。所以与其劝使用ie6的朋友升级ie7/ie8，不如培养他们使用chrome（有几个已经被我劝服，改邪归正了）。&lt;/p&gt;
&lt;p&gt;
	另外，&lt;a href=&quot;ftp://ftp.vim.org/pub/vim/unstable/pc/&quot; target=&quot;_blank&quot;&gt;vim7.3beta&lt;/a&gt;也出来了。&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/453339163/fantxi/feedsky/s.gif?r=http://www.fantxi.com/blog/archives/683/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/fantxi/453339163/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/fantxi/453339163/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class=&quot;fsflare&quot;&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=5df93cd6935baca11e358ecd74cbbe39&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=5df93cd6935baca11e358ecd74cbbe39&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=958a2a216e203fdd4a925794e0c7b7e5&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=958a2a216e203fdd4a925794e0c7b7e5&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description><category domain="http://www.fantxi.com/blog/tag/chrome/">chrome</category><category domain="http://www.fantxi.com/blog/tag/fierfox/">fierfox</category><category domain="http://www.fantxi.com/blog/tag/vim/">vim</category><category domain="http://www.fantxi.com/blog/category/1/">WebDev</category><pubDate>Wed, 28 Jul 2010 02:38:03 +0800</pubDate><author>kairyou@qq.com(kairyou)</author><guid isPermaLink="false">http://www.fantxi.com/blog/archives/683/</guid><dc:creator>kairyou@qq.com(kairyou)</dc:creator><fs:srclink>http://www.fantxi.com/blog/archives/683/</fs:srclink><fs:srcfeed>http://www.fantxi.com/blog/rss.php</fs:srcfeed><fs:itemid>feedsky/fantxi/~1224394/453339163/1226276</fs:itemid></item><item><title>全面更新到adobe cs5 系列了</title><link>http://www.fantxi.com/blog/archives/682/</link><description>Kairyou's Blog ( http://www.fantxi.com/blog/ ) : &lt;p&gt;
	以前CS4的一些小bug现在都没了，还有部分改动更符合用户体验了，很好很强大。&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/453339164/fantxi/feedsky/s.gif?r=http://www.fantxi.com/blog/archives/682/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/fantxi/453339164/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/fantxi/453339164/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class=&quot;fsflare&quot;&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=80b3bf964c63b98469607c2292b8bbc7&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=80b3bf964c63b98469607c2292b8bbc7&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=b81a8c6ce48981edfe4d6c9e365b1653&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=b81a8c6ce48981edfe4d6c9e365b1653&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description><category domain="http://www.fantxi.com/blog/tag/adobe/">adobe</category><category domain="http://www.fantxi.com/blog/category/1/">WebDev</category><pubDate>Tue, 11 May 2010 17:19:23 +0800</pubDate><author>kairyou@qq.com(kairyou)</author><guid isPermaLink="false">http://www.fantxi.com/blog/archives/682/</guid><dc:creator>kairyou@qq.com(kairyou)</dc:creator><fs:srclink>http://www.fantxi.com/blog/archives/682/</fs:srclink><fs:srcfeed>http://www.fantxi.com/blog/rss.php</fs:srcfeed><fs:itemid>feedsky/fantxi/~1224394/453339164/1226276</fs:itemid></item><item><title>最新微博好火爆</title><link>http://www.fantxi.com/blog/archives/681/</link><description>Kairyou's Blog ( http://www.fantxi.com/blog/ ) : &lt;p&gt;
	http://t.qq.com/kairyou&lt;br /&gt;
	http://t.sina.com.cn/kairyou&lt;br /&gt;
	http://kairyou.jaiku.com&lt;br /&gt;
	http://t.ifeng.com/kairyou&lt;br /&gt;
	http://kairyou.t.sohu.com/&lt;br /&gt;
	http://t.163.com/kairyou&lt;br /&gt;
	&lt;a href=&quot;http://www.google.com.hk/search?q=t.qq.com/invite/&amp;amp;hl=zh-CN&amp;amp;newwindow=1&amp;amp;safe=strict&amp;amp;tbo=1&amp;amp;tbs=mbl:1&amp;amp;ei=k0XWS-rbK5Di7AO9l8WSAw&amp;amp;sa=X&amp;amp;oi=tool&amp;amp;resnum=5&amp;amp;ct=tlink&amp;amp;ved=0CBIQpwU&quot; target=&quot;_blank&quot;&gt;qq微博的邀请码&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
	顺便记录下&lt;br /&gt;
	http://facebook.com/4kairyou&lt;br /&gt;
	http://twitter.com/4kairyou&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/453339165/fantxi/feedsky/s.gif?r=http://www.fantxi.com/blog/archives/681/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/fantxi/453339165/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/fantxi/453339165/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class=&quot;fsflare&quot;&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=a84d364bc4c628655e04ef0a18af9f93&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=a84d364bc4c628655e04ef0a18af9f93&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=f7da06c315c2e47ae9142f415c8cd961&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=f7da06c315c2e47ae9142f415c8cd961&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description><category domain="http://www.fantxi.com/blog/category/2/">LifeStyle</category><category domain="http://www.fantxi.com/blog/tag/%E5%BE%AE%E5%8D%9A/">微博</category><pubDate>Wed, 28 Apr 2010 19:58:54 +0800</pubDate><author>kairyou@qq.com(kairyou)</author><guid isPermaLink="false">http://www.fantxi.com/blog/archives/681/</guid><dc:creator>kairyou@qq.com(kairyou)</dc:creator><fs:srclink>http://www.fantxi.com/blog/archives/681/</fs:srclink><fs:srcfeed>http://www.fantxi.com/blog/rss.php</fs:srcfeed><fs:itemid>feedsky/fantxi/~1224394/453339165/1226276</fs:itemid></item><item><title>开发全屏web操作项目，浏览器全屏的解决</title><link>http://www.fantxi.com/blog/archives/680/</link><description>Kairyou's Blog ( http://www.fantxi.com/blog/ ) : &lt;p&gt;
	目前为移动开发一个项目，是全触摸屏的，基于web的，当然我的工作只限于前端开发的工作，完成项目首先要解决的就是浏览器全屏展示网页。像移动的自助缴费系统、ATM机等有些应该是这样做的（记得有次还在某个银行看到了win2000的启动界面）&lt;/p&gt;
&lt;p&gt;
	找了下资料，以前的文章应该是通过js打开一个全屏的浏览器窗口的吧，不过那个好像会出现一些问题。&lt;/p&gt;
&lt;p&gt;
	后来才找到了IE的Kiosk Mode全屏模式（Kiosk ModeKiosk Software广泛用于公共电脑或者嵌入系统，如可以上网的公共电话、ATM、机场自助服务系统、网吧管理软件等） ，在ie的快捷方式里面加入&amp;ldquo;-k&amp;rdquo;这个参数，就实现了真正的全屏，而非F11（IE下的F11浏览器的菜单和底部的状态栏）还是能看到部分的。&lt;/p&gt;
&lt;p&gt;
	Kiosk模式下的一些快捷键：&lt;/p&gt;
&lt;p&gt;
	Alt + 左箭头：上一页&lt;br /&gt;
	Alt + 右箭头：下一页&lt;br /&gt;
	Ctrl + D：加到我的收藏夹&lt;br /&gt;
	Ctrl + H：开启历史文件夹&lt;br /&gt;
	Ctrl + B：开启整理收藏夹&lt;br /&gt;
	Ctrl + L：输入网址，开启新网页&lt;br /&gt;
	Ctrl + N：开新窗口&lt;br /&gt;
	Ctrl + R：刷新(或按 F5)&lt;br /&gt;
	Ctrl + W：关闭目前的窗口(或按 Alt+F4)&lt;/p&gt;
&lt;p&gt;
	该方法只对起始页有效，通过该页弹出的窗口不是全屏幕窗口&lt;/p&gt;
&lt;p&gt;
	还有一个就是chrome浏览器下的F11，这个效果是目前使用过的浏览器里面全屏比较彻底的，但是上面还是有一条黑边，鼠标移上去就好提示按F11退出全屏，所以根据需要最好的就是IE下面的Kiosk模式了，据说是IE5.0+都支持，我用IE8测试是没问题的。&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/453339166/fantxi/feedsky/s.gif?r=http://www.fantxi.com/blog/archives/680/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/fantxi/453339166/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/fantxi/453339166/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class=&quot;fsflare&quot;&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=68964e67a80f459e92818a114075681d&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=68964e67a80f459e92818a114075681d&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=9428a4a3eb4990713632ae812647d048&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=9428a4a3eb4990713632ae812647d048&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description><category domain="http://www.fantxi.com/blog/tag/%E5%85%A8%E5%B1%8F/">全屏</category><category domain="http://www.fantxi.com/blog/category/1/">WebDev</category><pubDate>Wed, 28 Apr 2010 01:56:23 +0800</pubDate><author>kairyou@qq.com(kairyou)</author><guid isPermaLink="false">http://www.fantxi.com/blog/archives/680/</guid><dc:creator>kairyou@qq.com(kairyou)</dc:creator><fs:srclink>http://www.fantxi.com/blog/archives/680/</fs:srclink><fs:srcfeed>http://www.fantxi.com/blog/rss.php</fs:srcfeed><fs:itemid>feedsky/fantxi/~1224394/453339166/1226276</fs:itemid></item><item><title>blog移动到国外了</title><link>http://www.fantxi.com/blog/archives/679/</link><description>Kairyou's Blog ( http://www.fantxi.com/blog/ ) : &lt;p&gt;
	访问速度感觉慢了不少，凑合着用吧。&lt;/p&gt;
&lt;p&gt;
	实在不爽的时候，再考虑移动回国内。&lt;/p&gt;
&lt;p&gt;
	放在国外就是好，备案都不用管了。&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/453339167/fantxi/feedsky/s.gif?r=http://www.fantxi.com/blog/archives/679/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/fantxi/453339167/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/fantxi/453339167/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class=&quot;fsflare&quot;&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=c3d72d790272979fd7c5e031b3c865f4&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=c3d72d790272979fd7c5e031b3c865f4&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=8a62341873f5c6e67fb7c07afc43bd0d&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=8a62341873f5c6e67fb7c07afc43bd0d&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description><category domain="http://www.fantxi.com/blog/category/2/">LifeStyle</category><pubDate>Mon, 26 Apr 2010 02:45:30 +0800</pubDate><author>kairyou@qq.com(kairyou)</author><comments>http://www.fantxi.com/blog/archives/679/#comments</comments><guid isPermaLink="false">http://www.fantxi.com/blog/archives/679/</guid><dc:creator>kairyou@qq.com(kairyou)</dc:creator><fs:srclink>http://www.fantxi.com/blog/archives/679/</fs:srclink><fs:srcfeed>http://www.fantxi.com/blog/rss.php</fs:srcfeed><fs:itemid>feedsky/fantxi/~1224394/453339167/1226276</fs:itemid></item><item><title>jquery jsonp Ajax  跨域提交数据 (PHP)</title><link>http://www.fantxi.com/blog/archives/678/</link><description>Kairyou's Blog ( http://www.fantxi.com/blog/ ) : &lt;p&gt;
	最近做了一个Ajax提交反馈页，但是由于空间不支持一些基本的函数，所以准备做个跨域提交。&lt;/p&gt;
&lt;p&gt;
	javascript部分:&lt;/p&gt;
&lt;pre class=&quot;brush:js;&quot;&gt;
$(&amp;quot;#btn&amp;quot;).click(function(k) {
    //...
    var j = form.serializeArray();//序列化name/value
    $.ajax({
        url: &amp;quot;另一个域名/test.php&amp;quot;,
        dataType: &amp;#39;jsonp&amp;#39;,
        data: j,
        jsonp: &amp;#39;jsonp_callback&amp;#39;,
        success: function(json) { //返回的json数据
            json = json || {};
            if (json.msg==&amp;#39;err&amp;#39;){
                alert(json.info);
            }else if (json.msg==&amp;quot;ok&amp;quot;){
                alert(&amp;#39;提交成功&amp;#39;);
            }else{
                alert(&amp;#39;提交失败&amp;#39;);
            }
        },
        timeout: 3000
    })
    //...
});&lt;/pre&gt;
&lt;p&gt;
	php部分:&lt;/p&gt;
&lt;pre class=&quot;brush:php;&quot;&gt;
$jsonp_callback=$_GET[&amp;#39;jsonp_callback&amp;#39;];
//...
//如果正确
echo $jsonp_callback,&amp;#39;({&amp;quot;msg&amp;quot;:&amp;quot;ok&amp;quot;})&amp;#39;;
//如果错误
echo $jsonp_callback,&amp;#39;({&amp;quot;msg&amp;quot;:&amp;quot;err&amp;quot;,&amp;quot;info&amp;quot;:&amp;quot;因人品问题，发送失败&amp;quot;})&amp;#39;;
//...&lt;/pre&gt;
&lt;p&gt;
	值得注意的是采用jsonp 方式,beforeSend / error 都不能用了，所以beforeSend里面用js实现的验证只能用ajax在服务器端test.php上面验证了。&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/453339168/fantxi/feedsky/s.gif?r=http://www.fantxi.com/blog/archives/678/&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/fantxi/453339168/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/fantxi/453339168/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p class=&quot;fsflare&quot;&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=74d6d1ab1ae74af7042ff67d38d30a0d&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=74d6d1ab1ae74af7042ff67d38d30a0d&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/fantxi?a=1c4f0bd5fc16a75fda6d0124e8ab80a9&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/fantxi?i=1c4f0bd5fc16a75fda6d0124e8ab80a9&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;/p&gt;</description><category domain="http://www.fantxi.com/blog/tag/ajax/">ajax</category><category domain="http://www.fantxi.com/blog/tag/jquery/">jquery</category><category domain="http://www.fantxi.com/blog/category/1/">WebDev</category><pubDate>Mon, 29 Mar 2010 02:47:32 +0800</pubDate><author>kairyou@qq.com(kairyou)</author><guid isPermaLink="false">http://www.fantxi.com/blog/archives/678/</guid><dc:creator>kairyou@qq.com(kairyou)</dc:creator><fs:srclink>http://www.fantxi.com/blog/archives/678/</fs:srclink><fs:srcfeed>http://www.fantxi.com/blog/rss.php</fs:srcfeed><fs:itemid>feedsky/fantxi/~1224394/453339168/1226276</fs:itemid></item></channel></rss>
