<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>散人笔记 &#187; kos</title>
	<atom:link href="http://www.uideas.cn/post/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.uideas.cn</link>
	<description>生活来源于创意,所以我懂生活</description>
	<lastBuildDate>Sun, 22 Aug 2010 07:17:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>js实现表格行间隔效果（鼠标停留位置及当前行和选择行效果）</title>
		<link>http://www.uideas.cn/post/422.html</link>
		<comments>http://www.uideas.cn/post/422.html#comments</comments>
		<pubDate>Sun, 22 Aug 2010 07:13:58 +0000</pubDate>
		<dc:creator>kos</dc:creator>
				<category><![CDATA[JAVASCRIPT]]></category>
		<category><![CDATA[表格行效果]]></category>
		<category><![CDATA[选择行]]></category>
		<category><![CDATA[间隔]]></category>

		<guid isPermaLink="false">http://www.uideas.cn/?p=422</guid>
		<description><![CDATA[　　表格对于大家来说，并不陌生。为在更好的表达表格里面的数据，或许我们要对表格进行处理，很多情况下，我们只对表格进行了头部和列表做个样式的处理，似乎看起来并不直观，但由于程序和灵活性，要在每一行上加上样式，似乎做模版文件的时候并做不到...]]></description>
			<content:encoded><![CDATA[<p>　　表格对于大家来说，并不陌生。为在更好的表达表格里面的数据，或许我们要对表格进行处理，很多情况下，我们只对表格进行了头部和列表做个样式的处理，似乎看起来并不直观，但由于程序和灵活性，要在每一行上加上样式，似乎做模版文件的时候并做不到，只有在程序里面做判断，这样对程序增加麻烦，在套程序的时候会增加很多工作，所以这里简单介绍一下用js来对表格体的每行进行处理，看看下面的例子：</p>
<p>&nbsp;</p>
<form enctype="application/x-www-form-urlencoded" method="get"><code></p>
<div class="Nodiv">
<div class="Notitle">CODE</div>
<div class="Nocontent"><textarea class="textarea" cols="20" rows="8">&lt;!DOCTYPE HTML&gt;&#13;&#10;&lt;html&gt;&#13;&#10;&lt;head&gt;&#13;&#10;&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=gb2312&quot;&gt;&#13;&#10;&lt;title&gt;无标题文档&lt;/title&gt;&#13;&#10;&lt;style&gt;&#13;&#10;&lt;!--&#13;&#10;#tableCov{ background:#666}&#13;&#10;#tableCov th,#tableCov td{line-height:22px; height:22px; font-size:12px;}&#13;&#10;#tableCov th{ background:#CF6}&#13;&#10;.dTr{ background:#9FC}&#13;&#10;.cTr{ background:#FFF}&#13;&#10;.lastTd{ background:#C96;}&#13;&#10;.trOver{ background:#09F}&#13;&#10;--&gt;&#13;&#10;&lt;/style&gt;&#13;&#10;&lt;script&gt;&#13;&#10;&lt;!--&#13;&#10;function setTableCovStyle(){&#13;&#10;    var obj = document.getElementById(&quot;tableCov&quot;);&#13;&#10;    for(i=0;i&lt;obj.rows.length;i++){&#13;&#10;        if(i%2==0){&#13;&#10;            obj.rows[i].className = 'dTr';&#13;&#10;            }&#13;&#10;        else{&#13;&#10;            obj.rows[i].className = 'cTr';&#13;&#10;            }&#13;&#10;        }&#13;&#10;    obj.rows[0].className = 'tHead';&#13;&#10;    }&#13;&#10;window.onload = setTableCovStyle;&#13;&#10;function setLastTdStyle(obj){&#13;&#10;    var setRow = obj.parentNode.parentNode;&#13;&#10;    if(obj.checked){&#13;&#10;        setRow.cells[setRow.cells.length-1].className = &quot;lastTd&quot;;&#13;&#10;        }&#13;&#10;    else{&#13;&#10;        setRow.cells[setRow.cells.length-1].className = '';&#13;&#10;        }&#13;&#10;    }&#13;&#10;var bakStyle;&#13;&#10;function trOver(obj){&#13;&#10;    bakStyle = obj.className;&#13;&#10;    obj.className = 'trOver';&#13;&#10;    }&#13;&#10;&#13;&#10;function trOut(obj){&#13;&#10;    obj.className = bakStyle;&#13;&#10;    }&#13;&#10;--&gt;&#13;&#10;&lt;/script&gt;&#13;&#10;&lt;/head&gt;&#13;&#10;&lt;body&gt;&#13;&#10;&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;1&quot; id=&quot;tableCov&quot;&gt;&#13;&#10;    &lt;tr&gt;&#13;&#10;        &lt;th&gt;choose&lt;/th&gt;&#13;&#10;        &lt;th&gt;Title&lt;/th&gt;&#13;&#10;        &lt;th&gt;Content&lt;/th&gt;&#13;&#10;        &lt;th&gt;Datetime&lt;/th&gt;&#13;&#10;        &lt;th&gt;Operation&lt;/th&gt;&#13;&#10;    &lt;/tr&gt;&#13;&#10;    &lt;tr onMouseOver=&quot;trOver(this)&quot; onMouseOut=&quot;trOut(this)&quot;&gt;&#13;&#10;        &lt;td align=&quot;center&quot;&gt;&lt;input type=&quot;checkbox&quot; name=&quot;checkbox2&quot; id=&quot;checkbox2&quot; onClick=&quot;setLastTdStyle(this)&quot;&gt;&lt;/td&gt;&#13;&#10;        &lt;td&gt;1111&lt;/td&gt;&#13;&#10;        &lt;td&gt;1111111111111111111111111111...&lt;/td&gt;&#13;&#10;        &lt;td&gt;2010-01-01&lt;/td&gt;&#13;&#10;        &lt;td align=&quot;center&quot;&gt;del&lt;/td&gt;&#13;&#10;    &lt;/tr&gt;&#13;&#10;    &lt;tr onMouseOver=&quot;trOver(this)&quot; onMouseOut=&quot;trOut(this)&quot;&gt;&#13;&#10;        &lt;td align=&quot;center&quot;&gt;&lt;input type=&quot;checkbox&quot; name=&quot;checkbox3&quot; id=&quot;checkbox3&quot; onClick=&quot;setLastTdStyle(this)&quot;&gt;&lt;/td&gt;&#13;&#10;        &lt;td&gt;2222&lt;/td&gt;&#13;&#10;        &lt;td&gt;22222222222222222222222222222222222222...&lt;/td&gt;&#13;&#10;        &lt;td&gt;2010-01-01&lt;/td&gt;&#13;&#10;        &lt;td align=&quot;center&quot;&gt;del&lt;/td&gt;&#13;&#10;    &lt;/tr&gt;&#13;&#10;    &lt;tr onMouseOver=&quot;trOver(this)&quot; onMouseOut=&quot;trOut(this)&quot;&gt;&#13;&#10;        &lt;td align=&quot;center&quot;&gt;&lt;input type=&quot;checkbox&quot; name=&quot;checkbox4&quot; id=&quot;checkbox4&quot; onClick=&quot;setLastTdStyle(this)&quot;&gt;&lt;/td&gt;&#13;&#10;        &lt;td&gt;3333&lt;/td&gt;&#13;&#10;        &lt;td&gt;33333333333333333333333333...&lt;/td&gt;&#13;&#10;        &lt;td&gt;2010-01-01&lt;/td&gt;&#13;&#10;        &lt;td align=&quot;center&quot;&gt;del&lt;/td&gt;&#13;&#10;    &lt;/tr&gt;&#13;&#10;    &lt;tr onMouseOver=&quot;trOver(this)&quot; onMouseOut=&quot;trOut(this)&quot;&gt;&#13;&#10;        &lt;td align=&quot;center&quot;&gt;&lt;input type=&quot;checkbox&quot; name=&quot;checkbox5&quot; id=&quot;checkbox5&quot; onClick=&quot;setLastTdStyle(this)&quot;&gt;&lt;/td&gt;&#13;&#10;        &lt;td&gt;4444&lt;/td&gt;&#13;&#10;        &lt;td&gt;4444444444444444444444444444444444...&lt;/td&gt;&#13;&#10;        &lt;td&gt;2010-01-01&lt;/td&gt;&#13;&#10;        &lt;td align=&quot;center&quot;&gt;del&lt;/td&gt;&#13;&#10;    &lt;/tr&gt;&#13;&#10;&lt;/table&gt;&#13;&#10;&lt;/body&gt;&#13;&#10;&lt;/html&gt;&#13;&#10;</textarea></div>
<div class="Nobutton">
<input onclick="RunCode(this)" type="button" value="运行代码" />
<input onclick="CopyCode(this)" type="button" value="复制代码" />
<input onclick="SaveCode(this)" type="button" value="保存代码" /> <span class="Nots">[Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</span></div>
</div>
<p></code></form>
]]></content:encoded>
			<wfw:commentRss>http://www.uideas.cn/post/422.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>常用的通讯录或好友分组应用</title>
		<link>http://www.uideas.cn/post/415.html</link>
		<comments>http://www.uideas.cn/post/415.html#comments</comments>
		<pubDate>Thu, 19 Aug 2010 03:33:35 +0000</pubDate>
		<dc:creator>kos</dc:creator>
				<category><![CDATA[JAVASCRIPT]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[下拉菜单]]></category>
		<category><![CDATA[分组]]></category>

		<guid isPermaLink="false">http://www.uideas.cn/?p=415</guid>
		<description><![CDATA[　　分组应用应该说是个比较常用的功能，由于工作需要，写了一个分组设置的应用，就是把一个组的成员放到另一个组里面去，应用options.add方法把新的成员加到下拉菜单的列表中去，取option的值和内容时要注意，分别表示为：“对象[位].text”和“对象[位].value”，]]></description>
			<content:encoded><![CDATA[<p>　　分组应用应该说是个比较常用的功能，由于工作需要，写了一个分组设置的应用，就是把一个组的成员放到另一个组里面去，应用options.add方法把新的成员加到下拉菜单的列表中去，取option的值和内容时要注意，分别表示为：“对象[位].text”和“对象[位].value”，看下面的例子：</p>
<form enctype="application/x-www-form-urlencoded" method="get"><code></p>
<div class="Nodiv">
<div class="Notitle">CODE</div>
<div class="Nocontent"><textarea class="textarea" cols="20" rows="8">&lt;!DOCTYPE HTML&gt;&#13;&#10;&lt;html&gt;&#13;&#10;&lt;head&gt;&#13;&#10;&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=gb2312&quot;&gt;&#13;&#10;&lt;title&gt;无标题文档&lt;/title&gt;&#13;&#10;&lt;style&gt;&#13;&#10;&lt;!--&#13;&#10;td{ padding:5px; font-size:12px;}&#13;&#10;select{ width:100%; height:200px; margin:0px;}&#13;&#10;input{ width:40px; margin:1px;}&#13;&#10;--&gt;&#13;&#10;&lt;/style&gt;&#13;&#10;&lt;script&gt;&#13;&#10;&lt;!--&#13;&#10;function toGoalSin(){&#13;&#10;    var primGroup = document.getElementById(&quot;primGroup&quot;);&#13;&#10;    var goalGroup = document.getElementById(&quot;goalGroup&quot;);&#13;&#10;    for(i=primGroup.options.length-1;i&gt;=0;i--){&#13;&#10;        if (primGroup.options[i].selected){&#13;&#10;            adddata(goalGroup,primGroup[i].text,primGroup[i].value);&#13;&#10;            primGroup[i]=null;&#13;&#10;            }&#13;&#10;        }&#13;&#10;    }&#13;&#10;&#13;&#10;function toGoalAll(){&#13;&#10;    var primGroup = document.getElementById(&quot;primGroup&quot;);&#13;&#10;    var goalGroup = document.getElementById(&quot;goalGroup&quot;);&#13;&#10;    for(i=primGroup.options.length-1;i&gt;=0;i--){&#13;&#10;        adddata(goalGroup,primGroup[i].text,primGroup[i].value);&#13;&#10;        primGroup[i]=null;&#13;&#10;        }&#13;&#10;    }&#13;&#10;&#13;&#10;function toPrimAll(){&#13;&#10;    var primGroup = document.getElementById(&quot;primGroup&quot;);&#13;&#10;    var goalGroup = document.getElementById(&quot;goalGroup&quot;);&#13;&#10;    for(i=goalGroup.options.length-1;i&gt;=0;i--){&#13;&#10;        adddata(primGroup,goalGroup[i].text,goalGroup[i].value);&#13;&#10;        goalGroup[i]=null;&#13;&#10;        }&#13;&#10;    }&#13;&#10;&#13;&#10;function toPrimSin(){&#13;&#10;    var primGroup = document.getElementById(&quot;primGroup&quot;);&#13;&#10;    var goalGroup = document.getElementById(&quot;goalGroup&quot;);&#13;&#10;        for(i=goalGroup.options.length-1;i&gt;=0;i--){&#13;&#10;            if(goalGroup.options[i].selected){&#13;&#10;            adddata(primGroup,goalGroup[i].text,goalGroup[i].value);&#13;&#10;            goalGroup[i]=null;&#13;&#10;            }&#13;&#10;        }&#13;&#10;    }&#13;&#10;&#13;&#10;function adddata(obj,a,b){&#13;&#10;    var list = new Option(a,b);&#13;&#10;    obj.options.add(list);&#13;&#10;    }&#13;&#10;--&gt;&#13;&#10;&lt;/script&gt;&#13;&#10;&lt;/head&gt;&lt;body&gt;&#13;&#10;&lt;table border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;0&quot; bgcolor=&quot;#009999&quot;&gt;&#13;&#10;    &lt;tr&gt;&#13;&#10;        &lt;td width=&quot;150&quot; align=&quot;center&quot; bgcolor=&quot;#99CC66&quot;&gt;原始组&lt;/td&gt;&#13;&#10;        &lt;td width=&quot;50&quot; align=&quot;center&quot; bgcolor=&quot;#99CC66&quot;&gt;&amp;nbsp;&lt;/td&gt;&#13;&#10;        &lt;td width=&quot;150&quot; align=&quot;center&quot; bgcolor=&quot;#99CC66&quot;&gt;目标组&lt;/td&gt;&#13;&#10;    &lt;/tr&gt;&#13;&#10;    &lt;tr&gt;&#13;&#10;        &lt;td align=&quot;center&quot; bgcolor=&quot;#FFFFFF&quot;&gt;&lt;select name=&quot;select&quot; multiple id=&quot;primGroup&quot;&gt;&#13;&#10;        &lt;option value=&quot;1&quot;&gt;张三&lt;/option&gt;&#13;&#10;        &lt;option value=&quot;2&quot;&gt;李四&lt;/option&gt;&#13;&#10;        &lt;option value=&quot;3&quot;&gt;王五&lt;/option&gt;&#13;&#10;        &lt;option value=&quot;4&quot;&gt;赵六&lt;/option&gt;&#13;&#10;        &lt;option value=&quot;5&quot;&gt;孙七&lt;/option&gt;&#13;&#10;        &lt;option value=&quot;6&quot;&gt;刘八&lt;/option&gt;&#13;&#10;        &lt;/select&gt;&lt;/td&gt;&#13;&#10;        &lt;td align=&quot;center&quot; bgcolor=&quot;#FFFFFF&quot;&gt;&lt;input type=&quot;submit&quot; name=&quot;button&quot; id=&quot;button&quot; value=&quot;&amp;gt;&quot; onClick=&quot;toGoalSin()&quot;&gt;&#13;&#10;        &lt;br&gt;&#13;&#10;        &lt;input type=&quot;submit&quot; name=&quot;button2&quot; id=&quot;button2&quot; value=&quot;&amp;gt;&amp;gt;&quot; onClick=&quot;toGoalAll()&quot;&gt;&#13;&#10;        &lt;br&gt;&#13;&#10;        &lt;input type=&quot;submit&quot; name=&quot;button3&quot; id=&quot;button3&quot; value=&quot;&amp;lt;&amp;lt;&quot; onClick=&quot;toPrimAll()&quot;&gt;&#13;&#10;        &lt;br&gt;&#13;&#10;        &lt;input type=&quot;submit&quot; name=&quot;button4&quot; id=&quot;button4&quot; value=&quot;&amp;lt;&quot; onClick=&quot;toPrimSin()&quot;&gt;&lt;/td&gt;&#13;&#10;        &lt;td align=&quot;center&quot; bgcolor=&quot;#FFFFFF&quot;&gt;&lt;select name=&quot;select&quot; multiple id=&quot;goalGroup&quot;&gt;&#13;&#10;        &lt;/select&gt;&lt;/td&gt;&#13;&#10;    &lt;/tr&gt;&#13;&#10;&lt;/table&gt;&#13;&#10;&lt;/body&gt;&#13;&#10;&lt;/html&gt;&#13;&#10;</textarea></div>
<div class="Nobutton">
<input onclick="RunCode(this)" type="button" value="运行代码" />
<input onclick="CopyCode(this)" type="button" value="复制代码" />
<input onclick="SaveCode(this)" type="button" value="保存代码" /> <span class="Nots">[Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</span></div>
</div>
<p></code></form>
]]></content:encoded>
			<wfw:commentRss>http://www.uideas.cn/post/415.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>一款常用的导航样式（选项卡）</title>
		<link>http://www.uideas.cn/post/406.html</link>
		<comments>http://www.uideas.cn/post/406.html#comments</comments>
		<pubDate>Wed, 14 Jul 2010 02:43:28 +0000</pubDate>
		<dc:creator>kos</dc:creator>
				<category><![CDATA[JAVASCRIPT]]></category>
		<category><![CDATA[导航]]></category>
		<category><![CDATA[当前对象在数组中的位置]]></category>
		<category><![CDATA[选项卡]]></category>

		<guid isPermaLink="false">http://www.uideas.cn/?p=406</guid>
		<description><![CDATA[　　在浏览网站的时候，阅读网站上的很多分类文章，类似IE8的单窗口模式，很受网路人员的喜爱，其实实现原理很简单，由于好久没发文章了，本人先发一篇灌水性文章，虽然实用性很强，但技术实现那是相当简单，]]></description>
			<content:encoded><![CDATA[<p>　　在浏览网站的时候，阅读网站上的很多分类文章，类似IE8的单窗口模式，很受网路人员的喜爱，其实实现原理很简单，由于好久没发文章了，本人先发一篇灌水性文章，虽然实用性很强，但技术实现那是相当简单，简单介绍一下：里面抓住两个知识点：<br />
　　一、关于层的相对定位；<br />
　　二、对于传递this关键字存在于数组中的位置；<br />
　　看看下面的代码吧：</p>
<form enctype="application/x-www-form-urlencoded" method="get">
<code></p>
<div class="Nodiv">
<div class="Notitle">CODE</div>
<div class="Nocontent">
<textarea class="textarea" cols="20" rows="8">&lt;html&gt;&#13;&#10;&lt;head&gt;&#13;&#10;&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=gb2312&quot;&gt;&#13;&#10;&lt;title&gt;无标题文档&lt;/title&gt;&#13;&#10;&lt;style&gt;&#13;&#10;&lt;!--&#13;&#10;body{padding:0px; margin:10px;}&#13;&#10;*{ font-size:12px;}&#13;&#10;.cHead{ height:26px; line-height:26px; padding-left:4px;}&#13;&#10;.cHead li{ float:left; display:inline; margin-left:-1px; position:relative; padding-left:4px; padding-right:4px; cursor:pointer;}&#13;&#10;.cMenuon{ background:#FFF; border:1px #3C9 solid; height:27px; border-bottom:0px; line-height:27px; margin-bottom:-1px;}&#13;&#10;.cMenuout{ background:#EBEBEB; border:1px #3C9 solid; height:24px; border-bottom:0px; line-height:24px; margin-top:2px;}&#13;&#10;.cBody{ border:1px #3C9 solid;}&#13;&#10;--&gt;&#13;&#10;&lt;/style&gt;&#13;&#10;&lt;script&gt;&#13;&#10;&lt;!--&#13;&#10;function setMenuStyle(obj){&#13;&#10;    var j;&#13;&#10;    var cBody = document.getElementById(&quot;cBody&quot;);&#13;&#10;    var cMenus = obj.parentNode.getElementsByTagName('li');&#13;&#10;    for(i=0;i&lt;cMenus.length;i++){&#13;&#10;        cMenus[i].className = 'cMenuout';&#13;&#10;        cBody.rows[i].cells[0].style.display = 'none';&#13;&#10;        if(obj == cMenus[i]){&#13;&#10;            j = i;&#13;&#10;            }&#13;&#10;   		}&#13;&#10;    obj.className = 'cMenuon';&#13;&#10;    cBody.rows[j].cells[0].style.display = 'block';&#13;&#10;    }&#13;&#10;--&gt;&#13;&#10;&lt;/script&gt;&#13;&#10;&lt;/head&gt;&#13;&#10;&lt;body&gt;&#13;&#10;&lt;table width=&quot;100%&quot; height=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;&#13;&#10;    &lt;tr&gt;&#13;&#10;        &lt;td height=&quot;26&quot; class=&quot;cHead&quot;&gt;&#13;&#10;            &lt;li class=&quot;cMenuon&quot; onClick=&quot;setMenuStyle(this)&quot;&gt;功能导航一&lt;/li&gt;&#13;&#10;            &lt;li class=&quot;cMenuout&quot; onClick=&quot;setMenuStyle(this)&quot;&gt;功能导航二&lt;/li&gt;&#13;&#10;            &lt;li class=&quot;cMenuout&quot; onClick=&quot;setMenuStyle(this)&quot;&gt;功能导航三&lt;/li&gt;&#13;&#10;        &lt;/td&gt;&#13;&#10;    &lt;/tr&gt;&#13;&#10;    &lt;tr&gt;&#13;&#10;        &lt;td align=&quot;left&quot; valign=&quot;top&quot; class=&quot;cBody&quot;&gt;&#13;&#10;        &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; id=&quot;cBody&quot;&gt;&#13;&#10;            &lt;tr&gt;&#13;&#10;                &lt;td style=&quot;display:block&quot;&gt;&#13;&#10;                &lt;div style=&quot;margin:0 auto; text-align:center&quot;&gt;&#13;&#10;                    &lt;p style=&quot;font-size:24px; font-weight:bold;&quot;&gt;无法连接到服务器，请检查网络&lt;/p&gt;&#13;&#10;                    &lt;p&gt;点击&lt;span style=&quot;color:#F00; text-decoration:underline; cursor:pointer&quot;&gt;[刷新]&lt;/span&gt;尝试重新链接&lt;/p&gt;&#13;&#10;                &lt;/div&gt;&#13;&#10;                &lt;/td&gt;&#13;&#10;            &lt;/tr&gt;&#13;&#10;            &lt;tr&gt;&#13;&#10;                &lt;td style=&quot;display:none&quot;&gt;&#13;&#10;                &lt;div style=&quot;margin:0 auto; text-align:center&quot;&gt;&#13;&#10;                    &lt;p style=&quot;font-size:24px; font-weight:bold;&quot;&gt;对不起，你访问的页面不存在&lt;/p&gt;&#13;&#10;                    &lt;p&gt;请确认你输入的地址是否正确&lt;/p&gt;&#13;&#10;                &lt;/div&gt;&#13;&#10;<br />
                &lt;/td&gt;&#13;&#10;            &lt;/tr&gt;&#13;&#10;            &lt;tr&gt;&#13;&#10;                &lt;td style=&quot;display:none&quot;&gt;&#13;&#10;                &lt;div style=&quot;margin:0 auto; text-align:center&quot;&gt;&#13;&#10;                    &lt;p style=&quot;font-size:24px; font-weight:bold;&quot;&gt;对不起，此网页已过期&lt;/p&gt;&#13;&#10;                &lt;/div&gt;&#13;&#10;                &lt;/td&gt;&#13;&#10;<br />
            &lt;/tr&gt;&#13;&#10;        &lt;/table&gt;&#13;&#10;        &lt;/td&gt;&#13;&#10;    &lt;/tr&gt;&#13;&#10;&lt;/table&gt;&#13;&#10;&lt;/body&gt;&#13;&#10;&lt;/html&gt;</textarea></div>
<div class="Nobutton">
<input onclick="RunCode(this)" type="button" value="运行代码" />
<input onclick="CopyCode(this)" type="button" value="复制代码" />
<input onclick="SaveCode(this)" type="button" value="保存代码" />
<span class="Nots">[Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</span></div>
</div>
<p></code></form>
]]></content:encoded>
			<wfw:commentRss>http://www.uideas.cn/post/406.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>一款图片轮换效果</title>
		<link>http://www.uideas.cn/post/394.html</link>
		<comments>http://www.uideas.cn/post/394.html#comments</comments>
		<pubDate>Sun, 23 May 2010 17:24:48 +0000</pubDate>
		<dc:creator>kos</dc:creator>
				<category><![CDATA[DIV+CSS]]></category>
		<category><![CDATA[JAVASCRIPT]]></category>
		<category><![CDATA[图片滚动]]></category>
		<category><![CDATA[图片轮换]]></category>
		<category><![CDATA[类似flash]]></category>

		<guid isPermaLink="false">http://www.uideas.cn/?p=394</guid>
		<description><![CDATA[　　给大家分享一款图片的轮换效果，其实通过这个例子，你可以自己稍加点改动，就可以做出另外很多的效果的，先简单介绍一下构思：在图片轮换的时候，让前一张左移，同时让接下来展示的那一张右移，各移动一半的时候，两张图片就反方向移动，只是前一张变到后面，后一张变到前面了。]]></description>
			<content:encoded><![CDATA[<p>　　给大家分享一款图片的轮换效果，其实通过这个例子，你可以自己稍加点改动，就可以做出另外很多的效果的，先简单介绍一下构思：在图片轮换的时候，让前一张左移，同时让接下来展示的那一张右移，各移动一半的时候，两张图片就反方向移动，只是前一张变到后面，后一张变到前面了。实现原理看一下代码就明白了，如果你想做成其它效果，只需要改变js里面的移动方法就行了，比如把移动效果换成透明效果等。<br />
　　看下面的例子吧：</p>
<form enctype="application/x-www-form-urlencoded" method="get"><code></p>
<div class="Nodiv">
<div class="Notitle">CODE</div>
<div class="Nocontent"><textarea class="textarea" cols="20" rows="8">&lt;html&gt;&#13;&#10;&lt;head&gt;&#13;&#10;&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;&#13;&#10;&lt;title&gt;picmove&lt;/title&gt;&#13;&#10;&lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;http://www.uideas.cn/download/20100524.css&quot;&gt;&#13;&#10;&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;http://www.uideas.cn/download/20100524.js&quot;&gt;&lt;/script&gt;&#13;&#10;&lt;/head&gt;&#13;&#10;&lt;body&gt;&#13;&#10;&lt;div id=&quot;picScroll&quot;&gt;&#13;&#10;	&lt;div class=&quot;picCov&quot;&gt;&#13;&#10;		&lt;div id=&quot;picB&quot;&gt;&#13;&#10;			&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;&quot; width=&quot;600&quot; height=&quot;270&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&#13;&#10;		&lt;/div&gt;&#13;&#10;		&lt;div id=&quot;picF&quot;&gt;&#13;&#10;			&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;&quot; width=&quot;600&quot; height=&quot;270&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&#13;&#10;		&lt;/div&gt;&#13;&#10;		&lt;div id=&quot;picNumBg&quot;&gt;&lt;img src=&quot;http://www.uideas.cn/download/images/img/bg.png&quot;&gt;&lt;/div&gt;&#13;&#10;		&lt;div id=&quot;picNameBg&quot;&gt;&lt;img src=&quot;http://www.uideas.cn/download/images/img/picName.png&quot;&gt;&lt;/div&gt;&#13;&#10;		&lt;div id=&quot;picName&quot;&gt;&lt;a href=&quot;&quot;&gt;&lt;/a&gt;&lt;/div&gt;&#13;&#10;		&lt;div id=&quot;picNum&quot;&gt;&#13;&#10;			&lt;div id=&quot;picCount&quot;&gt;&lt;/div&gt;&#13;&#10;		&lt;/div&gt;&#13;&#10;		&lt;div id=&quot;picStr&quot; style=&quot;display:none;&quot;&gt;&#13;&#10;			&lt;a href=&quot;#&quot; title=&quot;累么&quot;&gt;&lt;img src=&quot;http://www.uideas.cn/download/images/img/1.jpg&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&#13;&#10;			&lt;a href=&quot;#&quot; title=&quot;酷么&quot;&gt;&lt;img src=&quot;http://www.uideas.cn/download/images/img/2.jpg&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&#13;&#10;			&lt;a href=&quot;#&quot; title=&quot;背影&quot;&gt;&lt;img src=&quot;http://www.uideas.cn/download/images/img/3.jpg&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&#13;&#10;			&lt;a href=&quot;#&quot; title=&quot;帅么&quot;&gt;&lt;img src=&quot;http://www.uideas.cn/download/images/img/4.jpg&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&#13;&#10;			&lt;a href=&quot;#&quot; title=&quot;秀么&quot;&gt;&lt;img src=&quot;http://www.uideas.cn/download/images/img/5.jpg&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&#13;&#10;			&lt;a href=&quot;#&quot; title=&quot;疯了&quot;&gt;&lt;img src=&quot;http://www.uideas.cn/download/images/img/6.jpg&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&#13;&#10;		&lt;/div&gt;&#13;&#10;	&lt;/div&gt;&#13;&#10;&lt;/div&gt;&#13;&#10;&lt;/body&gt;&#13;&#10;&lt;/html&gt;</textarea></div>
<div class="Nobutton">
<input onclick="RunCode(this)" type="button" value="运行代码" />
<input onclick="CopyCode(this)" type="button" value="复制代码" />
<input onclick="SaveCode(this)" type="button" value="保存代码" />
<span class="Nots">[Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</span></div>
</div>
<p></code></form>
<p>&nbsp;</p>
<p><span style="color: #993300;"><strong>相关下载：</strong></span><br />
　　完整演示实例下载：<a href="http://www.uideas.cn/download/Koscalendar.rar">20100524.rar</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.uideas.cn/post/394.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>一款网站公告滚动效果</title>
		<link>http://www.uideas.cn/post/387.html</link>
		<comments>http://www.uideas.cn/post/387.html#comments</comments>
		<pubDate>Thu, 20 May 2010 12:07:29 +0000</pubDate>
		<dc:creator>kos</dc:creator>
				<category><![CDATA[DIV+CSS]]></category>
		<category><![CDATA[JAVASCRIPT]]></category>
		<category><![CDATA[滚动公告]]></category>
		<category><![CDATA[连续滚动]]></category>

		<guid isPermaLink="false">http://www.uideas.cn/?p=387</guid>
		<description><![CDATA[　　通常很多网页由于内容太多，使页面的高度拉伸非常严重，会给游客浏览网页的时候带来很多麻烦和时间上的浪费，对于有些内容，看似很重要，但又不能占页面太大空间而影响页面的美观性，而只需要一小块也能将其展现出来，下面介绍一款滚动的例子。]]></description>
			<content:encoded><![CDATA[<p>　　通常很多网页由于内容太多，使页面的高度拉伸非常严重，会给游客浏览网页的时候带来很多麻烦和时间上的浪费，对于有些内容，看似很重要，但又不能占页面太大空间而影响页面的美观性，而只需要一小块也能将其展现出来，下面介绍一款滚动的例子。</p>
<p>　　通常网站公告可以划分为上面提到的这一类，使用滚动效果又能使其内容独特化，很容易引入游客眼目，同时战胜空间比较小，相对与普通的marquee移动来讲，此移动效果不会出现一片空白区域，是连续滚动的，看完下面的例子效果后，将其稍加变化，你就可以做成图片滚动，类似flash的效果了。</p>
<form enctype="application/x-www-form-urlencoded" method="get"><code></p>
<div class="Nodiv">
<div class="Notitle">CODE</div>
<div class="Nocontent"><textarea class="textarea" cols="20" rows="8">&lt;html&gt;&#13;&#10;&lt;head&gt;&#13;&#10;&lt;style type="text/css" media="screen"&gt;&#13;&#10;#mBox{height:24px;overflow:hidden; border:1px #99CC99 solid; background:#FFFFCC}&#13;&#10;#mBox #marquee{ padding-left:6px;}&#13;&#10;#mBox #marquee ul{ list-style-type:none; margin:0px; padding:0px;}&#13;&#10;#mBox #marquee ul li{ line-height:24px; height:24px; list-style-type:none; margin:0px; padding:0px; font-size:12px;}&#13;&#10;&lt;/style&gt;&#13;&#10;&lt;script language="javascript" type="text/javascript"&gt;&#13;&#10;var play = false;&#13;&#10;var lineheight = 24;&#13;&#10;var speed = 20;&#13;&#10;var relay = 3000;&#13;&#10;var obj;&#13;&#10;var action;&#13;&#10;function startmarquee(){&#13;&#10;	obj = document.getElementById("marquee");&#13;&#10;	obj.innerHTML += obj.innerHTML;&#13;&#10;	obj.style.marginTop = 0;&#13;&#10;	obj.onmouseover = function(){play = true;};&#13;&#10;	obj.onmouseout = function(){play = false;};&#13;&#10;	setTimeout(start,relay);&#13;&#10;	}&#13;&#10;function scrolling(){&#13;&#10;	if(parseInt(obj.style.marginTop)%lineheight != 0){&#13;&#10;		obj.style.marginTop = parseInt(obj.style.marginTop)-1+"px";&#13;&#10;		if(Math.abs(parseInt(obj.style.marginTop)) &gt;= obj.offsetHeight/2){&#13;&#10;			obj.style.marginTop = 0;&#13;&#10;			}&#13;&#10;		}&#13;&#10;	else{&#13;&#10;		clearInterval(action);&#13;&#10;		setTimeout(start,relay);&#13;&#10;		}&#13;&#10;	}&#13;&#10;function start(){&#13;&#10;	obj.style.height = obj.offsetHeight;&#13;&#10;	action = setInterval(scrolling,speed);&#13;&#10;	if(!play){&#13;&#10;		obj.style.marginTop = parseInt(obj.style.marginTop)-1+"px";&#13;&#10;		}&#13;&#10;	}&#13;&#10;window.onload = startmarquee;&#13;&#10;&lt;/script&gt;&#13;&#10;&lt;/head&gt;&#13;&#10;&lt;body&gt;&#13;&#10;&lt;div div id="mBox"&gt;&#13;&#10;&lt;div id="marquee"&gt;&#13;&#10;&lt;ul&gt;&#13;&#10;&lt;li&gt;&lt;a href="#" target=_blank&gt;文章标题一&lt;/a&gt;&lt;/li&gt;&#13;&#10;&lt;li&gt;&lt;a href="#" target=_blank&gt;文章标题二&lt;/a&gt;&lt;/li&gt;&#13;&#10;&lt;li&gt;&lt;a href="#" target=_blank&gt;文章标题三&lt;/a&gt;&lt;/li&gt;&#13;&#10;&lt;li&gt;&lt;a href="#" target=_blank&gt;文章标题四&lt;/a&gt;&lt;/li&gt;&#13;&#10;&lt;li&gt;&lt;a href="#" target=_blank&gt;文章标题五&lt;/a&gt;&lt;/li&gt;&#13;&#10;&lt;li&gt;&lt;a href="#" target=_blank&gt;文章标题六&lt;/a&gt;&lt;/li&gt;&#13;&#10;&lt;/ul&gt;&#13;&#10;&lt;/div&gt;&#13;&#10;&lt;/div&gt;&#13;&#10;&lt;/body&gt;&#13;&#10;&lt;/html&gt;&#13;&#10; </textarea></div>
<div class="Nobutton">
<input onclick="RunCode(this)" type="button" value="运行代码" />
<input onclick="CopyCode(this)" type="button" value="复制代码" />
<input onclick="SaveCode(this)" type="button" value="保存代码" />
<span class="Nots">[Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</span></div>
</div>
<p> </p>
<p></code></form>
]]></content:encoded>
			<wfw:commentRss>http://www.uideas.cn/post/387.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>一款灵活性很强的日历代码</title>
		<link>http://www.uideas.cn/post/365.html</link>
		<comments>http://www.uideas.cn/post/365.html#comments</comments>
		<pubDate>Mon, 19 Apr 2010 08:56:59 +0000</pubDate>
		<dc:creator>kos</dc:creator>
				<category><![CDATA[JAVASCRIPT]]></category>
		<category><![CDATA[兼容]]></category>
		<category><![CDATA[换肤]]></category>
		<category><![CDATA[日历]]></category>
		<category><![CDATA[日历控件]]></category>
		<category><![CDATA[日期限制]]></category>
		<category><![CDATA[灵活]]></category>

		<guid isPermaLink="false">http://www.uideas.cn/?p=365</guid>
		<description><![CDATA[　　工作之余，因个人对js的爱好，写了一款日历，综合了以往工作中遇到的与日历选择相关的很多功能。由于个人技能欠缺，可能会有一些地方处理得不够好，有意一起研究者可以与本人联系，把这个日历做得更好，声明一下：此日历着重点在功能上，而不在特殊效果上，为了让此代码更为简洁，代码量更小，无须加任务特效。]]></description>
			<content:encoded><![CDATA[<p>　　工作之余，因个人对js的爱好，写了一款日历，综合了以往工作中遇到的与日历选择相关的很多功能。由于个人技能欠缺，可能会有一些地方处理得不够好，有意一起研究者可以与本人联系，把这个日历做得更好，声明一下：此日历着重点在功能上，而不在特殊效果上，为了让此代码更为简洁，代码量更小，无须加任务特效。<br />
　　下面做点简单的介绍：</p>
<p>&nbsp;</p>
<p><strong><span style="color: #993300;">一、日历目录存放</span></strong><br />
　　|&#8211; [Calendar]<br />
　　　　|&#8211; [style]<br />
　　　　　　|&#8211; [blue]<br />
　　　　　　　　|&#8211; [images]<br />
　　　　　　　　|&#8211; Calendarstyle.css<br />
　　　　　　|&#8211;[demo]<br />
　　　　　　　　|&#8211; [images]<br />
　　　　　　　　|&#8211; Calendarstyle.css<br />
　　　　|&#8211; Calendar.js<br />
　　　　|&#8211; Calendarcov.css</p>
<p>&nbsp;</p>
<p><span style="color: #993300;">注意：1、调用js时在&lt;head&gt;区域引用Calendar/Calendar.js和Calendarcov.css即可。<br />
　　　2、记住要把images同时放到相应的文件夹下面</span></p>
<p>&nbsp;</p>
<p><span style="color: #993300;"><strong>二、日历皮肤更换</strong></span><br />
　　支持自定义皮肤，本日历已给出两套模版，自己制作皮肤时可以对照demo.html模版中的class进行制作<br />
　　制作好的皮肤存放目录要注意，自定义一个皮肤文件夹（如已有的[demo]）放到[style]文件夹里面，然后把你要用到的图片放到你的皮肤文件夹里面的[images]文件夹里面，css样式文件命名为Calendarstyle.css与[images]文件夹同级。</p>
<p>　　<span style="color: #993300;">css样式说明：</span><br />
　　#calendarCov .calenCovbody：弹出层的总体框架样式，主要设置主题背景颜色<br />
　　#calendarCov .calenCov：弹出层的总体框架样式，设置头部边框<br />
　　#calendarCov .calenTitle：顶部年月样式和总体背景图片样式<br />
　　#calendarCov a;#calendarCov td：通用样式<br />
　　#calendarCov th：周的单元格样式<br />
　　#calendarCov .calenHead：周所在行的样式：主要设置背景<br />
　　#calendarCov .calenYlast：上一年的按钮样式<br />
　　#calendarCov .calenMlast：上一月的按钮样式<br />
　　#calendarCov .calenYnext：下一年的按钮样式<br />
　　#calendarCov .calenMnext：下一月的按钮样式<br />
　　#calendarCov .calenBody：日历体的样式，主要设置层次感<br />
　　#calendarCov .calenBodyCov：日历体的样式，主要设置层次感和边框<br />
　　#calendarCov .calenday td：日期单元格样式<br />
　　#calendarCov .calenday td a：当月存在日期单元格样式<br />
　　#calendarCov .calenday td a:hover:当月存在日期单元格鼠标指向样式<br />
　　#calendarCov .calenday .weekend：日期单元格周末样式<br />
　　#calendarCov .calenday .weekday：日期单元格非周末样式<br />
　　#calendarCov .calenday .weeknull：空白日期单元格样式<br />
　　#calendarCov .calenday .current默认日期样式，主要设置边框和背景<br />
　　#calendarCov .calenday .current a默认日期样式，主要设置字体颜色<br />
　　#calendarCov .calenButton：日历下面部分三个按钮样式，主要设置与日历体间距<br />
　　#calendarCov .calenButton div：日历下面部分三个按钮样式，主要设置按钮背景#calendarCov .calenButton div a：日历下部分三个按钮样式，主要设置按钮字体<br />
　　calenSetnull：清空按钮样式<br />
　　calenSetoday：今天按钮样式<br />
　　calenClosefl：确定按钮样式</p>
<p>&nbsp;</p>
<p><strong><span style="color: #993300;">三、调用格式</span></strong><br />
　　<span style="color: #993300;">先举几个例子：</span></p>
<p>&nbsp;</p>
<p><span style="color: #993300;">1、普通调用</span><br />
　　&lt;input type=&#8221;text&#8221; onFocus=&#8221;showCalendarControl(this)&#8221; readonly=&#8221;"&gt;<br />
　　用onFocus方法调用是为了方便使用键盘获取焦点，showCalendarControl()是执行的方法，传递的this是当前对象，要把选择的日期返回给当前对象所以需要传递当前获取焦点的对象，readonly表明此控件为只读，用户不能手动输入，此日历为了方便使用，所以限制做得很少，同时为了不让用户手动输入不合法的日期格式，所以最好把控件设置成不能手动输入状态；</p>
<p>&nbsp;</p>
<p><span style="color: #993300;">2、有样式的调用</span><br />
　　&lt;input type=&#8221;text&#8221; onFocus=&#8221;showCalendarControl(this,&#8217;class:demo&#8217;)&#8221; readonly=&#8221;"&gt;<br />
　　demo就是你要调用的样式文件夹，注意格式&#8217;class:demo&#8217;,必须在demo前加是class:，然后用单引号引起来，并且与this用逗号隔开，并且要注意顺序：this参数放到前面，以后的每个方法传递参数时都是this放到最前面，其余的可以颠倒；</p>
<p>&nbsp;</p>
<p><span style="color: #993300;">3、限定日期调用</span><br />
　　&lt;input type=&#8221;text&#8221; onFocus=&#8221;showCalendarControl(this,&#8217;minDate:2010-01-01&#8242;)&#8221; readonly=&#8221;"&gt;<br />
　　minDate:2010-01-01的意思是设定当前对象选择的最小时间值是2010年01月01日，注意年月日要用‘-’号连接，若要设定最大值，则用maxDate:datevalue，这里的datevalue就是你想设定的日期值了。如果设定最大值或最小值为今天，则表达为showCalendarControl(this,&#8217;minDate:#today&#8217;)或showCalendarControl(this,&#8217;maxDate:#today&#8217;)；</p>
<p>&nbsp;</p>
<p><span style="color: #993300;">4、限定日期同时并有天数限定</span><br />
　　&lt;input type=&#8221;text&#8221; onFocus=&#8221;showCalendarControl(this,&#8217;minDate:#today(d:20)&#8217;)&#8221; readonly=&#8221;"&gt;<br />
　　这里的minDate:#today(d:20)的意思是最小值比今天大20天，若要设定最小值比今天小20天则表达示为minDate:#today(d:-20),d表示设定的限定为天数，同理，年:y,月:m；</p>
<p>&nbsp;</p>
<p><span style="color: #993300;">5、限定日期与其它控件日期做对比</span><br />
　　&lt;input type=&#8221;text&#8221; id=&#8221;date1&#8243; value=&#8221;2010-04-19&#8243; onFocus=&#8221;showCalendarControl(this)&#8221; readonly=&#8221;"&gt;<br />
　　&lt;input type=&#8221;text&#8221; onFocus=&#8221;showCalendarControl(this,&#8217;minDate:date1(d:20)&#8217;)&#8221; readonly=&#8221;"&gt;<br />
　　用法是第4个例子差不多，不同的是today前面加了个#，（即#today和date1的区别而已），同时两个日期还可以做想到限制，使得关系更为紧密；</p>
<p>&nbsp;</p>
<p><span style="color: #993300;">6、同时限定最大值的最小值</span><br />
　　&lt;input type=&#8221;text&#8221; onFocus=&#8221;showCalendarControl(this,&#8217;minDate:#today(d:-20))^maxDate:#today(d:(20)&#8217;)&#8221;　readonly=&#8221;"&gt;<br />
　　 ‘^’这个符号是用来连接最大值和最小值的，这里的minDate和maxDate限定可以互换位置，但不要忘了打‘^’这个符号，这句话的意思是选定的日期范围为从过去20天到未来20天内；</p>
<p>&nbsp;</p>
<p><span style="color: #993300;">7、同时有日期限定也有样式控制</span><br />
　　&lt;input type=&#8221;text&#8221; onFocus=&#8221;showCalendarControl(this,&#8217;minDate:#today&#8217;,'class:demo&#8217;)&#8221; readonly=&#8221;"&gt;<br />
　　这时传递的参数有三个，第一个是当前对象，第二个是日期的限定，大于等于今天，第三上是引用样式，注意this必须放到第一个参数，后面两个参数可以互换位置，即上面这个调用与&lt;input type=&#8221;text&#8221; onFocus=&#8221;showCalendarControl(this,&#8217;class:demo&#8217;,'minDate:#today&#8217;)&#8221; readonly=&#8221;"&gt;对等，注意引用样式也要用引号引起来；</p>
<p>&nbsp;</p>
<p><span style="color: #993300;">8、更多灵活的调用方法尽在你的不自不觉发现中，同时期待你的宝贵意见</span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong><span style="color: #993300;">四：声明</span></strong><br />
　　1、此日历可能会出现一些异常情况，若要实际用此日历请多加调试，只是小弟反复测试暂时还没出现异常情况<br />
　　2、为尊重小弟劳动成果，转载请注明来源，同时方便因我更新后能得到最新文件<br />
　　3、此日历不含任务广告和恶意代码，若调试没有bug可以大胆使用<br />
　　4、为了让大家得到更详细的介绍，请通过博客留言和E-mail方式与本人联系，小弟会尽快给予回复。</p>
<p>&nbsp;</p>
<p><span style="color: #993300;"><strong>相关下载：</strong></span><br />
　　完整版附带调用实例下载：<a href="http://www.uideas.cn/download/Koscalendar.rar">Koscalendar.rar</a><br />
　　演示地址：<a href="http://www.uideas.cn/download/Calendar/Calendar.html" target="_block">查看演示样例</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.uideas.cn/post/365.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>我爱我的散人笔记</title>
		<link>http://www.uideas.cn/post/269.html</link>
		<comments>http://www.uideas.cn/post/269.html#comments</comments>
		<pubDate>Wed, 14 Apr 2010 07:39:28 +0000</pubDate>
		<dc:creator>kos</dc:creator>
				<category><![CDATA[网络杂坛]]></category>
		<category><![CDATA[散人笔记]]></category>

		<guid isPermaLink="false">http://www.uideas.cn/?p=269</guid>
		<description><![CDATA[　　绸缪已久的《散人笔记》总算是走上路了，可以说这个计划是悠久的，行动是缓慢的，结果是自我感觉的。
换了一种风格，仿佛换来了一次新生，换的也是一种对生活的态度，对过去不知道说什么，但是对未来却抱有希望，没有真正的世界末日，只是自己心里有鬼，没有真正的现实残酷，只是自己总在埋怨，同时也没有真正的希望神灯，而需要自己去创造……]]></description>
			<content:encoded><![CDATA[<p>　　绸缪已久的《散人笔记》总算是走上路了，可以说这个计划是悠久的，行动是缓慢的，结果是自我感觉的。<br />
换了一种风格，仿佛换来了一次新生，换的也是一种对生活的态度，对过去不知道说什么，但是对未来却抱有希望，没有真正的世界末日，只是自己心里有鬼，没有真正的现实残酷，只是自己总在埋怨，同时也没有真正的希望神灯，而需要自己去创造……</p>
<p>走大了，写成励志类了，第一次把心情写到博客上感觉还真有点不一样，走着呗！那就多点废话了：</p>
<p>在此感谢一直以来关注《友意》的人，同时期待你继续关注《散人笔记》<br />
　　感谢互联网，让我学到不少东西，同时也让网路朋友分享我的成果<br />
　　感谢wordpress……</p>
<p>小弟一定竭尽所能把更广，更好，更适用的东西与大家分享！</p>
<p>口号喊起来：“生活来源于创意，所以我懂生活！”</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uideas.cn/post/269.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
