<?xml version="1.0" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="css/rss.xslt"?>
<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>毅之博客 - javascript</title><link>http://www.wisetoolkit.cn/</link><description>创造机会的是勇者，等待机会的是愚者！ - </description><generator>RainbowSoft Studio Z-Blog 1.8 Walle Build 91204</generator><language>zh-CN</language><copyright>Copyright 2009-2010 wisetoolkit.cn. All Rights Reserved.</copyright><pubDate>Sun, 05 Sep 2010 14:34:08 +0800</pubDate><item><title>用js绘制图形简介</title><author>a@b.com (willpower)</author><link>http://www.wisetoolkit.cn/post/30.html</link><pubDate>Fri, 09 Apr 2010 17:51:16 +0800</pubDate><guid>http://www.wisetoolkit.cn/post/30.html</guid><description><![CDATA[<p>用js动态绘出三角形，下面是例子：<br />&nbsp;</p><p><img width="300" height="190" onload="ResizeImage(this,520)" alt="" src="http://www.wisetoolkit.cn/upload/tri1.gif" /><br />&nbsp;</p><p><br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&quot;&gt;</p><p>...</p>]]></description><category>javascript</category><comments>http://www.wisetoolkit.cn/post/30.html#comment</comments><wfw:comment>http://www.wisetoolkit.cn/</wfw:comment><wfw:commentRss>http://www.wisetoolkit.cn/feed.asp?cmt=30</wfw:commentRss><trackback:ping>http://www.wisetoolkit.cn/cmd.asp?act=tb&amp;id=30&amp;key=e532fd2b</trackback:ping></item><item><title>动态增加删除表格中的行</title><author>a@b.com (willpower)</author><link>http://www.wisetoolkit.cn/post/29.html</link><pubDate>Fri, 09 Apr 2010 17:42:47 +0800</pubDate><guid>http://www.wisetoolkit.cn/post/29.html</guid><description><![CDATA[<p>总结一下动态增加删除表格行的dom方法，下面是示例<br /><br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&quot;&gt;</p>...]]></description><category>javascript</category><comments>http://www.wisetoolkit.cn/post/29.html#comment</comments><wfw:comment>http://www.wisetoolkit.cn/</wfw:comment><wfw:commentRss>http://www.wisetoolkit.cn/feed.asp?cmt=29</wfw:commentRss><trackback:ping>http://www.wisetoolkit.cn/cmd.asp?act=tb&amp;id=29&amp;key=11bb4783</trackback:ping></item><item><title>Javascript的面向对象分析-类</title><author>a@b.com (willpower)</author><link>http://www.wisetoolkit.cn/post/22.html</link><pubDate>Mon, 08 Feb 2010 10:06:40 +0800</pubDate><guid>http://www.wisetoolkit.cn/post/22.html</guid><description><![CDATA[<p>这两天有点忙，一直都没有时间，现在开始写一下JS的类<br />为什么要提到类？ 因为面向对象的设计，类是必须的<br />为什么要用面向对象的方式设计程序？ 因为面向对象的设计是简单的，尤其是对一个我们无法控制全部的大项目而言，面向过程就显得力不从心了。<br />废话不说了， 正式开始<br />类这个话题现在已经说的很多了，它就像是一个模板，每个对象都通过这个模板产生出来，亦称为实例。就如我们这么多人抽象一下叫人类，而人类的实例有几十亿个。<br /><br />英文版本：<br />...</p>]]></description><category>javascript</category><comments>http://www.wisetoolkit.cn/post/22.html#comment</comments><wfw:comment>http://www.wisetoolkit.cn/</wfw:comment><wfw:commentRss>http://www.wisetoolkit.cn/feed.asp?cmt=22</wfw:commentRss><trackback:ping>http://www.wisetoolkit.cn/cmd.asp?act=tb&amp;id=22&amp;key=f99e574e</trackback:ping></item><item><title>Javascript列出指定文件夹下所有文件夹的个数</title><author>a@b.com (willpower)</author><link>http://www.wisetoolkit.cn/post/21.html</link><pubDate>Sat, 30 Jan 2010 10:04:26 +0800</pubDate><guid>http://www.wisetoolkit.cn/post/21.html</guid><description><![CDATA[<p>刚才群里有人问这个，顺便写了下，万一以后用到，这个用递归就可以很好的解决</p>]]></description><category>javascript</category><comments>http://www.wisetoolkit.cn/post/21.html#comment</comments><wfw:comment>http://www.wisetoolkit.cn/</wfw:comment><wfw:commentRss>http://www.wisetoolkit.cn/feed.asp?cmt=21</wfw:commentRss><trackback:ping>http://www.wisetoolkit.cn/cmd.asp?act=tb&amp;id=21&amp;key=af2c1ae2</trackback:ping></item><item><title>一个js闭包的例子</title><author>a@b.com (willpower)</author><link>http://www.wisetoolkit.cn/post/20.html</link><pubDate>Tue, 26 Jan 2010 10:02:54 +0800</pubDate><guid>http://www.wisetoolkit.cn/post/20.html</guid><description><![CDATA[<p>下图是js的作用域链<br /><img title="" alt="" src="http://www.wisetoolkit.cn/upload/js_scope.gif" onload="ResizeImage(this,520)" /><br />&lt;script type=&quot;text/javascript&quot;&gt;&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />function ArithMometer(i)&nbsp;&nbsp;&nbsp; <br />...</p>]]></description><category>javascript</category><comments>http://www.wisetoolkit.cn/post/20.html#comment</comments><wfw:comment>http://www.wisetoolkit.cn/</wfw:comment><wfw:commentRss>http://www.wisetoolkit.cn/feed.asp?cmt=20</wfw:commentRss><trackback:ping>http://www.wisetoolkit.cn/cmd.asp?act=tb&amp;id=20&amp;key=b6e1e982</trackback:ping></item></channel></rss>
