<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>nullTao | 净空无道 | Blog - Comments</title>
    <link>http://blog.nulltao.net/</link>
    <description>nullTao | 净空无道 | Blog - 如果死真的是种解脱，那么愿死者有他的天堂，愿生者有他的寄托。但愿在宇宙的深处真有一处天堂，有一天当我们在经历生死契阔之后，还有一个地方在等待着我们的——重逢。</description>
    <dc:language>en</dc:language>
    <admin:errorReportsTo rdf:resource="mailto:nulltao@gmail.com" />
    <generator>Serendipity 1.3 - http://www.s9y.org/</generator>
    <pubDate>Sat, 22 Nov 2008 05:29:20 GMT</pubDate>

    <image>
        <url>http://blog.nulltao.net/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: nullTao | 净空无道 | Blog - Comments - nullTao | 净空无道 | Blog - 如果死真的是种解脱，那么愿死者有他的天堂，愿生者有他的寄托。但愿在宇宙的深处真有一处天堂，有一天当我们在经历生死契阔之后，还有一个地方在等待着我们的——重逢。</title>
        <link>http://blog.nulltao.net/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Liu Chen: 看图说话：Google 大爱</title>
    <link>http://blog.nulltao.net/archives/98-Google.html#c22374</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/98-Google.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=98</wfw:comment>

    

    <author>nulltao@gmail.com (Liu Chen)</author>
    <content:encoded>
    换Opera吧. 
    </content:encoded>

    <pubDate>Sat, 06 Sep 2008 18:52:27 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/98-guid.html#c22374</guid>
    
</item>
<item>
    <title>summer: 看图说话：耿氏凉面</title>
    <link>http://blog.nulltao.net/archives/99-unknown.html#c22350</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/99-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=99</wfw:comment>

    

    <author>nulltao@gmail.com (summer)</author>
    <content:encoded>
    看起来是相当的诱人噢：） 
    </content:encoded>

    <pubDate>Sat, 06 Sep 2008 11:17:19 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/99-guid.html#c22350</guid>
    
</item>
<item>
    <title>净空无道: 一个 # 不够，那么就多来几个吧</title>
    <link>http://blog.nulltao.net/archives/97-unknown.html#c22074</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/97-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=97</wfw:comment>

    

    <author>nulltao@gmail.com (净空无道)</author>
    <content:encoded>
    这样啊。受教了，呵呵。谢谢了。
不过这段代码看的还是是懂非懂，毕竟偶是程序员出身，JS一直是一个搞不懂的问题。event到现在都不知道怎么用。呵呵。慢慢研究一下。 
    </content:encoded>

    <pubDate>Thu, 04 Sep 2008 01:26:44 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/97-guid.html#c22074</guid>
    
</item>
<item>
    <title>罂粟: 一个 # 不够，那么就多来几个吧</title>
    <link>http://blog.nulltao.net/archives/97-unknown.html#c22062</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/97-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=97</wfw:comment>

    

    <author>luosheng1986@gmail.com (罂粟)</author>
    <content:encoded>
    笔误，应该是
somelink.onclick = function(e) {
e = e || window.event;
if (e.preventDefault)
e.preventDefault();
e.returnValue = false;
} 
    </content:encoded>

    <pubDate>Wed, 03 Sep 2008 22:47:05 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/97-guid.html#c22062</guid>
    
</item>
<item>
    <title>罂粟: 一个 # 不够，那么就多来几个吧</title>
    <link>http://blog.nulltao.net/archives/97-unknown.html#c22061</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/97-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=97</wfw:comment>

    

    <author>luosheng1986@gmail.com (罂粟)</author>
    <content:encoded>
    一般不要把onclick事件写在html中，如果你非要这么做的话可以写成Some text

然后some_js_here里最后一句return false就可以阻止浏览器的默认行为了。

当然，比较标准的做法是：

somelink.onclick = function(e) {
  e = e || window.event;
  if (e.preventDefault)
    e.preventDefault;
  e.returnValue = false;
} 
    </content:encoded>

    <pubDate>Wed, 03 Sep 2008 22:45:47 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/97-guid.html#c22061</guid>
    
</item>
<item>
    <title>净空无道: 让 Firefox3 支持 Flash</title>
    <link>http://blog.nulltao.net/archives/89-Firefox3-Flash.html#c16008</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/89-Firefox3-Flash.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=89</wfw:comment>

    

    <author>nulltao@gmail.com (净空无道)</author>
    <content:encoded>
    丫早说啊……还得偶那么费劲……
不过偶用的是Portableapp的鸟语版 
    </content:encoded>

    <pubDate>Thu, 19 Jun 2008 09:53:55 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/89-guid.html#c16008</guid>
    
</item>
<item>
    <title>WG: 让 Firefox3 支持 Flash</title>
    <link>http://blog.nulltao.net/archives/89-Firefox3-Flash.html#c15970</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/89-Firefox3-Flash.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=89</wfw:comment>

    

    <author>williamgateszhao@gmail.com (WG)</author>
    <content:encoded>
    据我观察，似乎FF3.0正式版的中文版带Flash插件不用装了……所以很正常啊 
    </content:encoded>

    <pubDate>Wed, 18 Jun 2008 23:28:21 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/89-guid.html#c15970</guid>
    
</item>
<item>
    <title>净空无道: 下一代 web：HTML5——我们能等到真正的标准吗？</title>
    <link>http://blog.nulltao.net/archives/87-webHTML5.html#c15303</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/87-webHTML5.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=87</wfw:comment>

    

    <author>nulltao@gmail.com (净空无道)</author>
    <content:encoded>
    done了。 
    </content:encoded>

    <pubDate>Tue, 10 Jun 2008 09:51:45 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/87-guid.html#c15303</guid>
    
</item>
<item>
    <title>WG: 下一代 web：HTML5——我们能等到真正的标准吗？</title>
    <link>http://blog.nulltao.net/archives/87-webHTML5.html#c15298</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/87-webHTML5.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=87</wfw:comment>

    

    <author>williamgateszhao@gmail.com (WG)</author>
    <content:encoded>
    交换链接
你的已经做好了…… 
    </content:encoded>

    <pubDate>Tue, 10 Jun 2008 09:27:35 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/87-guid.html#c15298</guid>
    
</item>
<item>
    <title>净空无道: 干活啦，开工啦，ThingingStone开始开发啦</title>
    <link>http://blog.nulltao.net/archives/84-ThingingStone.html#c14958</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/84-ThingingStone.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=84</wfw:comment>

    

    <author>nulltao@gmail.com (净空无道)</author>
    <content:encoded>
    恩。现在还没有写完呢。呵呵。写完了才能发布的。 
    </content:encoded>

    <pubDate>Fri, 06 Jun 2008 10:39:59 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/84-guid.html#c14958</guid>
    
</item>
<item>
    <title>frank05: 干活啦，开工啦，ThingingStone开始开发啦</title>
    <link>http://blog.nulltao.net/archives/84-ThingingStone.html#c14954</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/84-ThingingStone.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=84</wfw:comment>

    

    <author>lilyfrank05@gmail.com (frank05)</author>
    <content:encoded>
    bt的人玩bt的框架……
话说什么时候架到服务器上让我们也玩玩啊？ 
    </content:encoded>

    <pubDate>Fri, 06 Jun 2008 09:39:10 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/84-guid.html#c14954</guid>
    
</item>
<item>
    <title>净空无道: 真正的客厅媒体中心</title>
    <link>http://blog.nulltao.net/archives/83-unknown.html#c14815</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/83-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=83</wfw:comment>

    

    <author>nulltao@gmail.com (净空无道)</author>
    <content:encoded>
    恩。也是啊。那么偶想象偶有一个很大的房子，送一层给你了。现在你欠我一个人情啦。 
    </content:encoded>

    <pubDate>Wed, 04 Jun 2008 17:17:24 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/83-guid.html#c14815</guid>
    
</item>
<item>
    <title>summer: 真正的客厅媒体中心</title>
    <link>http://blog.nulltao.net/archives/83-unknown.html#c14802</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/83-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=83</wfw:comment>

    

    <author>ttsummer@gmail.com (summer)</author>
    <content:encoded>
    没事儿～～～想象是不收费滴～～～ 
    </content:encoded>

    <pubDate>Wed, 04 Jun 2008 13:18:39 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/83-guid.html#c14802</guid>
    
</item>
<item>
    <title>血饕餮: 想要快感就这么简单</title>
    <link>http://blog.nulltao.net/archives/82-unknown.html#c14755</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/82-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=82</wfw:comment>

    

    <author>6kay@163.com (血饕餮)</author>
    <content:encoded>
    原来这就是...啊～～～！！！雷达！！的快感...囧 
    </content:encoded>

    <pubDate>Tue, 03 Jun 2008 23:56:38 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/82-guid.html#c14755</guid>
    
</item>
<item>
    <title>nullTao: 看图说话：自作简易版香蒜法棍</title>
    <link>http://blog.nulltao.net/archives/77-unknown.html#c12884</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/77-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=77</wfw:comment>

    

    <author>nulltao@gmail.com (nullTao)</author>
    <content:encoded>
    晕倒……
洒家做饭好吃着呢～呵呵 
    </content:encoded>

    <pubDate>Thu, 15 May 2008 20:29:22 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/77-guid.html#c12884</guid>
    
</item>
<item>
    <title>大阿福: 看图说话：自作简易版香蒜法棍</title>
    <link>http://blog.nulltao.net/archives/77-unknown.html#c12879</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/77-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=77</wfw:comment>

    

    <author>iamyuelinkai@gmail.com (大阿福)</author>
    <content:encoded>
    你居然会做饭？狂汗哪……
我太佩服你了…… 
    </content:encoded>

    <pubDate>Thu, 15 May 2008 18:15:19 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/77-guid.html#c12879</guid>
    
</item>
<item>
    <title>火曜: 我靠！我真爱国！</title>
    <link>http://blog.nulltao.net/archives/80-unknown.html#c12468</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/80-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=80</wfw:comment>

    

    <author>nulltao@gmail.com (火曜)</author>
    <content:encoded>
    嗯……我用欧莱雅，今后用上LA MER也是我的梦想……我也打算给我娘买Dior的逆时空…… 
    </content:encoded>

    <pubDate>Sun, 11 May 2008 00:19:06 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/80-guid.html#c12468</guid>
    
</item>
<item>
    <title>nullTao: 被老鼠点名了……</title>
    <link>http://blog.nulltao.net/archives/81-unknown.html#c12405</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/81-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=81</wfw:comment>

    

    <author>nulltao@gmail.com (nullTao)</author>
    <content:encoded>
    ft～～你就不能支持一下啊，
要不然多没面子啊。 
    </content:encoded>

    <pubDate>Fri, 09 May 2008 14:32:54 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/81-guid.html#c12405</guid>
    
</item>
<item>
    <title>summer: 被老鼠点名了……</title>
    <link>http://blog.nulltao.net/archives/81-unknown.html#c12299</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/81-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=81</wfw:comment>

    

    <author>nulltao@gmail.com (summer)</author>
    <content:encoded>
    竟然有我……
不过还好，我有这个：http://www.84tt.cn/blog/2006/06/286.html
哈哈～ 
    </content:encoded>

    <pubDate>Thu, 08 May 2008 13:33:50 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/81-guid.html#c12299</guid>
    
</item>
<item>
    <title>Rufev: 胡言乱语之廉价的爱国</title>
    <link>http://blog.nulltao.net/archives/79-unknown.html#c11473</link>
            <category></category>
    
    <comments>http://blog.nulltao.net/archives/79-unknown.html#comments</comments>
    <wfw:comment>http://blog.nulltao.net/wfwcomment.php?cid=79</wfw:comment>

    

    <author>nulltao@gmail.com (Rufev)</author>
    <content:encoded>
    CMCC不是国企。 
    </content:encoded>

    <pubDate>Wed, 30 Apr 2008 08:20:29 +0800</pubDate>
    <guid isPermaLink="false">http://blog.nulltao.net/archives/79-guid.html#c11473</guid>
    
</item>

</channel>
</rss>