<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>我的知识收集 - </title><link>category/324334.aspx</link><description /><dc:language>zh-CN</dc:language><lastUpdateTime>Mon, 30 Jun 2008 11:36:12 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>chen8148</dc:creator><title>不间断滚动JS代码</title><link>http://blog.csdn.net/chen8148/archive/2008/06/30/2597567.aspx</link><pubDate>Mon, 30 Jun 2008 11:36:00 GMT</pubDate><guid>http://blog.csdn.net/chen8148/archive/2008/06/30/2597567.aspx</guid><wfw:comment>comments/2597567.aspx</wfw:comment><comments>http://blog.csdn.net/chen8148/archive/2008/06/30/2597567.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2597567.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2597567</trackback:ping><description>不间断滚动JS代码&lt;img src ="aggbug/2597567.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>chen8148</dc:creator><title>可以打开和隐藏层也可以拖动层</title><link>http://blog.csdn.net/chen8148/archive/2008/06/30/2597467.aspx</link><pubDate>Mon, 30 Jun 2008 11:18:00 GMT</pubDate><guid>http://blog.csdn.net/chen8148/archive/2008/06/30/2597467.aspx</guid><wfw:comment>comments/2597467.aspx</wfw:comment><comments>http://blog.csdn.net/chen8148/archive/2008/06/30/2597467.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/2597467.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2597467</trackback:ping><description>可以打开和隐藏层也可以拖动层&lt;img src ="aggbug/2597467.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>chen8148</dc:creator><title>正则表达式的例子 </title><link>http://blog.csdn.net/chen8148/archive/2007/11/01/1861265.aspx</link><pubDate>Thu, 01 Nov 2007 14:36:00 GMT</pubDate><guid>http://blog.csdn.net/chen8148/archive/2007/11/01/1861265.aspx</guid><wfw:comment>comments/1861265.aspx</wfw:comment><comments>http://blog.csdn.net/chen8148/archive/2007/11/01/1861265.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1861265.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1861265</trackback:ping><description>正则表达式的例子 &lt;img src ="aggbug/1861265.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>chen8148</dc:creator><title>JS时间验证源码</title><link>http://blog.csdn.net/chen8148/archive/2007/10/31/1859707.aspx</link><pubDate>Wed, 31 Oct 2007 16:31:00 GMT</pubDate><guid>http://blog.csdn.net/chen8148/archive/2007/10/31/1859707.aspx</guid><wfw:comment>comments/1859707.aspx</wfw:comment><comments>http://blog.csdn.net/chen8148/archive/2007/10/31/1859707.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1859707.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1859707</trackback:ping><description>

	导读： 　　 　　js时间验证源码 　　(1) 短时间，形如 (13:04:06) 　　function isTime(str) 　　{ 　　var a ＝ str.match(/^(\d{1,2})(:)?(\d{1,2})\2(\d{1,2})$/); 　　if (a ＝＝ null) {alert(’输入的参数不是时间格式’); return false;} 　　if (a[1]&amp;gt;24 || a[3]&amp;gt;60 || a[4]&amp;gt;60) 　　{ 　　alert("时间格式不对"); 　　return false 　　} 　　return true; 　　} 　　(2) 短日期，形如 (2003-12-05) 　　function strDateTime(str) 　　{ 　　var r ＝ str.match(/^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2})$/); 　　if(r＝＝null)return false; 　　var d＝ new Date(r[1], r[3]-1, r[4]); 　　return (d.getFull&lt;img src ="aggbug/1859707.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>chen8148</dc:creator><title>一个好用的电子地图</title><link>http://blog.csdn.net/chen8148/archive/2007/08/14/1742767.aspx</link><pubDate>Tue, 14 Aug 2007 15:33:00 GMT</pubDate><guid>http://blog.csdn.net/chen8148/archive/2007/08/14/1742767.aspx</guid><wfw:comment>comments/1742767.aspx</wfw:comment><comments>http://blog.csdn.net/chen8148/archive/2007/08/14/1742767.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1742767.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1742767</trackback:ping><description>一个好用的电子地图&lt;img src ="aggbug/1742767.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>chen8148</dc:creator><title>JS操作cookie的函数</title><link>http://blog.csdn.net/chen8148/archive/2007/08/02/1722789.aspx</link><pubDate>Thu, 02 Aug 2007 16:31:00 GMT</pubDate><guid>http://blog.csdn.net/chen8148/archive/2007/08/02/1722789.aspx</guid><wfw:comment>comments/1722789.aspx</wfw:comment><comments>http://blog.csdn.net/chen8148/archive/2007/08/02/1722789.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1722789.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1722789</trackback:ping><description>
	导读： function getCookie(Name) { var search = Name + "="; if(document.cookie.length &amp;gt; 0) { offset = document.cookie.indexOf(search); if(offset != -1) { offset += search.length; end = document.cookie.indexOf(";", offset); if(end == -1) end = document.cookie.length; return unescape(document.cookie.substring(offset, end)); } else return('); } else return('); } function setCookie(name,value) { var today = new Date(); var expires = new Date(); expires.setTime(today.getTime() + 1000*60*60*24*365)&lt;img src ="aggbug/1722789.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>chen8148</dc:creator><title>javascript读取xml</title><link>http://blog.csdn.net/chen8148/archive/2007/08/02/1722218.aspx</link><pubDate>Thu, 02 Aug 2007 11:08:00 GMT</pubDate><guid>http://blog.csdn.net/chen8148/archive/2007/08/02/1722218.aspx</guid><wfw:comment>comments/1722218.aspx</wfw:comment><comments>http://blog.csdn.net/chen8148/archive/2007/08/02/1722218.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1722218.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1722218</trackback:ping><description>javascript读取xml&lt;img src ="aggbug/1722218.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>chen8148</dc:creator><title>页面checkbox “全选定” 和 “全取消” 操作的实现（JavaScript）</title><link>http://blog.csdn.net/chen8148/archive/2007/08/02/1722203.aspx</link><pubDate>Thu, 02 Aug 2007 11:01:00 GMT</pubDate><guid>http://blog.csdn.net/chen8148/archive/2007/08/02/1722203.aspx</guid><wfw:comment>comments/1722203.aspx</wfw:comment><comments>http://blog.csdn.net/chen8148/archive/2007/08/02/1722203.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1722203.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1722203</trackback:ping><description>页面checkbox “全选定” 和 “全取消” 操作的实现（JavaScript）&lt;img src ="aggbug/1722203.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>chen8148</dc:creator><title>遍历页面内所有一类控件并做相关操作 </title><link>http://blog.csdn.net/chen8148/archive/2007/08/02/1722165.aspx</link><pubDate>Thu, 02 Aug 2007 10:40:00 GMT</pubDate><guid>http://blog.csdn.net/chen8148/archive/2007/08/02/1722165.aspx</guid><wfw:comment>comments/1722165.aspx</wfw:comment><comments>http://blog.csdn.net/chen8148/archive/2007/08/02/1722165.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1722165.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1722165</trackback:ping><description>遍历页面内所有一类控件并做相关操作 &lt;img src ="aggbug/1722165.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>chen8148</dc:creator><title>JavaScript常用語句</title><link>http://blog.csdn.net/chen8148/archive/2007/08/02/1722158.aspx</link><pubDate>Thu, 02 Aug 2007 10:37:00 GMT</pubDate><guid>http://blog.csdn.net/chen8148/archive/2007/08/02/1722158.aspx</guid><wfw:comment>comments/1722158.aspx</wfw:comment><comments>http://blog.csdn.net/chen8148/archive/2007/08/02/1722158.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>comments/commentRss/1722158.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1722158</trackback:ping><description>JavaScript常用語句&lt;img src ="aggbug/1722158.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>