<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[runoo'  blog - 网站代码]]></title>
<link>http://www.runoo.com/blog/</link>
<description><![CDATA[一切从简单到复杂再到简单]]></description>
<language>zh-cn</language>
<copyright><![CDATA[Copyright 2005 PBlog2 v2.4]]></copyright>
<webMaster><![CDATA[jordanqiu@msn.com(runtime)]]></webMaster>
<generator>PBlog2 v2.4</generator> 
<image>
	<title>runoo&#39;  blog</title> 
	<url>http://www.runoo.com/blog/images/logos.gif</url> 
	<link>http://www.runoo.com/blog/</link> 
	<description>runoo&#39;  blog</description> 
</image>

			<item>
			<link>http://www.runoo.com/blog/default.asp?id=257</link>
			<title><![CDATA[方便快捷让我迷倒的jquery]]></title>
			<author>jordanqiu@msn.com(admin)</author>
			<category><![CDATA[网站代码]]></category>
			<pubDate>Sun,28 Sep 2008 13:18:32 +0800</pubDate>
			<guid>http://www.runoo.com/blog/default.asp?id=257</guid>	
		<description><![CDATA[<img src="http://www.runoo.com/blog/attachments/month_0809/g2008928131148.gif" border="0" alt=""/><br/><br/>超级方便的编写，不用再去写getElementById，getElementByTagName，不用在去for(i=1;i&lt;×.length,i++)，不用去担心ie和ff的兼容，超多共享的插件，还有那让人着迷的$美刀，哈哈，js狂泻n行，jquery三言两语搞定，没有办法不喜欢，一些随之简单，方便，快捷，<br/>收集了一些jquery的资料<br/><a target="_blank" href="http://jquery.com/">jquery官方网站</a><br/><a target="_blank" href="http://ui.jquery.com/">jquery ui</a>里面有很多经典的<br/><a target="_blank" href="http://jquery-api-zh-cn.googlecode.com/svn/trunk/index.html">jquery中文api帮助</a><br/><a target="_blank" href="http://cssrain.cn/">cssrain 起步学不错里面有很多案例</a><br/><a target="_blank" href="http://www.cnjquery.com/">www.cnjquery.com/</a><br/><a target="_blank" href="http://parandroid.com/more-than-50-powerful-plug-in-application-examples-jquery/">50多个强大的jQuery插件应用实例</a>]]></description>
		</item>
		
			<item>
			<link>http://www.runoo.com/blog/default.asp?id=226</link>
			<title><![CDATA[动画效果打开层 关闭层 ]]></title>
			<author>jordanqiu@msn.com(admin)</author>
			<category><![CDATA[网站代码]]></category>
			<pubDate>Wed,09 Apr 2008 09:22:05 +0800</pubDate>
			<guid>http://www.runoo.com/blog/default.asp?id=226</guid>	
		<description><![CDATA[<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.runoo.com/blog/images/html.gif" style="margin:0px 2px -3px 0px"> HTML代码</div><div class="UBBContent"><TEXTAREA rows="8" id="temp93630"><!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&#34;>
<html xmlns=&#34;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&#34;>
<head>
<meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=gb2312&#34; />
<title>DOM_text01</title>
<style type=&#34;text/css&#34;>
body,span,div,td{font-size:12px;line-height:1.5em;color:#849BCA;}
#bodyL{
	float:left;
	width:84px;
	margin-right:2px;
}
a.od{
	width:80px;
	height:25px;
	line-height:25px;
	text-align:center;
	font-weight:bold;
	border: 2px solid #849BCA;	
	display:block;
	color:#547BC9;
	float:left;
	text-decoration:none;
	margin-top:2px;
}
a.od:link{
	background:#EEF1F8;
}
a.od:visited{
	background:#EEF1F8;
}
a.od:hover{
	background:#EEE;
}
a.od:active{
	background:#EEE;
}
#fd{	
	width:500px;
	height:200px;
	background:#EDF1F8;	
	border: 2px solid #849BCA;
	margin-top:2px;
	margin-left:2px;
	float:left;
	overflow:hidden;
	position:absolute;
	left:0px;
	top:0px;
	cursor:move;
	float:left;
	/*filter:alpha(opacity=50);*/
	
}
.content{
	padding:10px;
}
</style>
</head>
<body>
<div id=&#34;bodyL&#34;>
	<a href=&#34;#&#34; class=&#34;od&#34; onclick = &#34;show('fd');return false;&#34;>
		[打开层]
	</a>
	<a href=&#34;#&#34; class=&#34;od&#34; onclick = &#34;closeed('fd');return false;&#34;>
		[关闭层]
	</a>
</div>	
<div id=&#34;fd&#34; style=&#34;display:none;filter:alpha(opacity=100);opacity:1;&#34;>
	<div class=&#34;content&#34;>移动层</div>	
</div>
	
<script type=&#34;text/javascript&#34;>
	var prox;
	var proy;
	var proxc;
	var proyc;
	function show(id){/*--打开--*/
		clearInterval(prox);
		clearInterval(proy);
		clearInterval(proxc);
		clearInterval(proyc);
		var o = document.getElementById(id);
		o.style.display = &#34;block&#34;;
		o.style.width = &#34;1px&#34;;
		o.style.height = &#34;1px&#34;; 
		prox = setInterval(function(){openx(o,500)},10);
	}	
	function openx(o,x){/*--打开x--*/
		var cx = parseInt(o.style.width);
		if(cx < x)
		{
			o.style.width = (cx + Math.ceil((x-cx)/5)) +&#34;px&#34;;
		}
		else
		{
			clearInterval(prox);
			proy = setInterval(function(){openy(o,200)},10);
		}
	}	
	function openy(o,y){/*--打开y--*/	
		var cy = parseInt(o.style.height);
		if(cy < y)
		{
			o.style.height = (cy + Math.ceil((y-cy)/5)) +&#34;px&#34;;
		}
		else
		{
			clearInterval(proy);			
		}
	}	
	function closeed(id){/*--关闭--*/
		clearInterval(prox);
		clearInterval(proy);
		clearInterval(proxc);
		clearInterval(proyc);		
		var o = document.getElementById(id);
		if(o.style.display == &#34;block&#34;)
		{
			proyc = setInterval(function(){closey(o)},10);			
		}		
	}	
	function closey(o){/*--打开y--*/	
		var cy = parseInt(o.style.height);
		if(cy > 0)
		{
			o.style.height = (cy - Math.ceil(cy/5)) +&#34;px&#34;;
		}
		else
		{
			clearInterval(proyc);				
			proxc = setInterval(function(){closex(o)},10);
		}
	}	
	function closex(o){/*--打开x--*/
		var cx = parseInt(o.style.width);
		if(cx > 0)
		{
			o.style.width = (cx - Math.ceil(cx/5)) +&#34;px&#34;;
		}
		else
		{
			clearInterval(proxc);
			o.style.display = &#34;none&#34;;
		}
	}	
	
	
	/*-------------------------鼠标拖动---------------------*/	
	var od = document.getElementById(&#34;fd&#34;);	
	var dx,dy,mx,my,mouseD;
	var odrag;
	var isIE = document.all ? true : false;
	document.onmousedown = function(e){
		var e = e ? e : event;
		if(e.button == (document.all ? 1 : 0))
		{
			mouseD = true;			
		}
	}
	document.onmouseup = function(){
		mouseD = false;
		odrag = &#34;&#34;;
		if(isIE)
		{
			od.releaseCapture();
			od.filters.alpha.opacity = 100;
		}
		else
		{
			window.releaseEvents(od.MOUSEMOVE);
			od.style.opacity = 1;
		}		
	}
	
	
	//function readyMove(e){	
	od.onmousedown = function(e){
		odrag = this;
		var e = e ? e : event;
		if(e.button == (document.all ? 1 : 0))
		{
			mx = e.clientX;
			my = e.clientY;
			od.style.left = od.offsetLeft + &#34;px&#34;;
			od.style.top = od.offsetTop + &#34;px&#34;;
			if(isIE)
			{
				od.setCapture();				
				od.filters.alpha.opacity = 50;
			}
			else
			{
				window.captureEvents(Event.MOUSEMOVE);
				od.style.opacity = 0.5;
			}
			
			//alert(mx);
			//alert(my);
			
		} 
	}
	document.onmousemove = function(e){
		var e = e ? e : event;
		
		//alert(mrx);
		//alert(e.button);		
		if(mouseD==true &amp;&amp; odrag)
		{		
			var mrx = e.clientX - mx;
			var mry = e.clientY - my;	
			od.style.left = parseInt(od.style.left) +mrx + &#34;px&#34;;
			od.style.top = parseInt(od.style.top) + mry + &#34;px&#34;;			
			mx = e.clientX;
			my = e.clientY;
			
		}
	}
	
	
</script>
</body>
</html></TEXTAREA><br/><INPUT onclick="runEx('temp93630')"  type="button" value="运行此代码"/> <INPUT onclick="doCopy('temp93630')"  type="button" value="复制此代码"/><br/> [Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.runoo.com/blog/default.asp?id=203</link>
			<title><![CDATA[css技巧之PDF、ZIP、DOC链接的标注]]></title>
			<author>jordanqiu@msn.com(admin)</author>
			<category><![CDATA[网站代码]]></category>
			<pubDate>Tue,04 Sep 2007 17:32:49 +0800</pubDate>
			<guid>http://www.runoo.com/blog/default.asp?id=203</guid>	
		<description><![CDATA[有时候我们希望能明确的用小图标来标明我们的超链接的类型。是一个zip文档还是一个pdf文件。这样访问者就知道他所要点击的这个链接是下载而不是打开另一个页面了。如果所有的人都使用IE7或者FF的话。我们完全可以使用[att$=val]属性选择器，寻找以特定值（比如.zip和.doc）结尾的属性。<br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.runoo.com/blog/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent"><br/>a[href$=&#34;.pdf&#34;] { padding-right: 19px; background: url(pdf.gif) no-repeat 100% .5em; }<br/>a[href$=&#34;.zip&#34;] { padding-right: 17px; background: url(zip.gif) no-repeat 100% .5em; }</div></div><br/>不幸的是IE6以下浏览器不支持属性选择器。好在，可以通过在每个元素中添加类，使用JavaScript和DOM实现相似的效果。<br/><br/>下面给出了一个解决办法:<br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.runoo.com/blog/images/code.gif" style="margin:0px 2px -3px 0px" alt="程序代码"/> 程序代码</div><div class="UBBContent"><br/>function fileLinks() {<br/>&nbsp;&nbsp;&nbsp;&nbsp;var fileLink;<br/>&nbsp;&nbsp;&nbsp;&nbsp;if (document.getElementsByTagName(&#39;a&#39;)) {<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for (var i = 0; (fileLink = document.getElementsByTagName(&#39;a&#39;)[i]); i++) {<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (fileLink.href.indexOf(&#39;.pdf&#39;) != -1) {<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fileLink.setAttribute(&#39;target&#39;, &#39;_blank&#39;);<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fileLink.className = &#39;pdfLink&#39;;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (fileLink.href.indexOf(&#39;.doc&#39;) != -1) {<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fileLink.setAttribute(&#39;target&#39;, &#39;_blank&#39;);<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fileLink.className = &#39;docLink&#39;;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (fileLink.href.indexOf(&#39;.zip&#39;) != -1) {<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fileLink.setAttribute(&#39;target&#39;, &#39;_blank&#39;);<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fileLink.className = &#39;zipLink&#39;;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br/>&nbsp;&nbsp;&nbsp;&nbsp;}<br/>}<br/>window.onload = function() {<br/>&nbsp;&nbsp;&nbsp;&nbsp;fileLinks();<br/>}</div></div><br/>当然，你需要在你的css文件中，增加这几个css类：<br/>[code]<br/>.pdfLink { padding-right: 19px; background: url(pdf.gif) no-repeat 100% .5em; }<br/>.docLink { padding-right: 19px; background: url(doc.gif) no-repeat 100% .5em; }<br/>.zipLink { padding-right: 17px; background: url(zip.gif) no-repeat 100% .5em; }[code]<br/><strong><u>一点小问题，使用indexof来判断，那如果我的文件名是doc.PDF，如何判断呢？</u></strong>]]></description>
		</item>
		
			<item>
			<link>http://www.runoo.com/blog/default.asp?id=202</link>
			<title><![CDATA[飞来飞去的邮件选择，强]]></title>
			<author>jordanqiu@msn.com(admin)</author>
			<category><![CDATA[网站代码]]></category>
			<pubDate>Tue,04 Sep 2007 10:37:20 +0800</pubDate>
			<guid>http://www.runoo.com/blog/default.asp?id=202</guid>	
		<description><![CDATA[<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.runoo.com/blog/images/html.gif" style="margin:0px 2px -3px 0px"> HTML代码</div><div class="UBBContent"><TEXTAREA rows="8" id="temp49292">
<html xmlns=&#34;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&#34;>
<head>
<title>博客邮箱飞来飞去效果演示</title>
<script type=&#34;text/javascript&#34;>
/**
 * @author cuilin www.cuilin.name
 * @mail:cuilin0@gmail.com
 */
	var ev={};
	var flyDiv=&#34;bxAddrFly&#34;;//发送的层
	var inceptDiv=&#34;SendAddress&#34;;//负责接收层效果的控件
	var addEvent=&#34;addAddress()&#34;;//层发送成功后的接收事件
	function oo(obj){return (document.getElementById) ? document.getElementById(obj): document.all[obj];}
	function isNone(str){return str==null||str==&#34;&#34;?true:false}
	//=================兼容Firefox/Event=================
	//因为要将表现与行为分离所在此处浪费了很多代码
	var Browser = new Object();
	Browser.isFirefox = (navigator.userAgent.toLowerCase().indexOf(&#34;firefox&#34;)!=-1);
	if (Browser.isFirefox) { extendEventObject();}
	function extendEventObject() {
	
		window.constructor.prototype.__defineGetter__(&#34;event&#34;, function(){
		var o = arguments.callee.caller;
		var e;
		while(o != null){
			e = o.arguments[0];
			if(e &amp;&amp; (e.constructor == Event || e.constructor == MouseEvent)) return e;
			o = o.caller;
		}
		return null;
		});
		
		Event.prototype.__defineGetter__(&#34;srcElement&#34;, function () {
			var node = this.target;
			while (node.nodeType != 1) node = node.parentNode;
			return node;
		});	
	}
	window.onload = function(){
		var addrTree = oo('tbAddrTree');
		addrTree.onmouseover = function(){addrTree_event(event)};
		addrTree.onmouseout = function(){addrTree_event(event)};
		addrTree.onclick = function(){addrTree_event(event)};
	}
	function addrTree_event(e){	
		var memberID,tr
		var ee = e.srcElement; 
		if(ee.tagName==&#34;A&#34;&amp;&amp;e.type==&#34;mouseover&#34;){ee.style.textDecoration=&#34;underline&#34;}
		if(ee.tagName==&#34;A&#34;&amp;&amp;e.type==&#34;mouseout&#34;){ee.style.textDecoration=&#34;&#34;}
		if(e.type==&#34;click&#34;&amp;&amp;e.srcElement.tagName==&#34;A&#34;){			
			var li=ee.parentNode.parentNode;
			ev.AddInfo=&#34;\&#34;&#34;+li.getAttribute(&#34;memberName&#34;)+&#34;\&#34;<\&#34;&#34;+li.getAttribute(&#34;email&#34;)+&#34;\&#34;>&#34;
			oo(flyDiv).innerHTML=li.getAttribute(&#34;memberName&#34;);
			addrTree_add(e.clientX,e.clientY)
		}
	}
	function addrTree_add(ex,ey){
		if(oo(flyDiv).style.display=='none'||oo(flyDiv).style.display==''){oo(flyDiv).style.display='block';}
		//此处获取控件的坐标
		var inceptE = oo(inceptDiv);
		var inceptEX = inceptE.offsetTop;   
		var inceptEY = inceptE.offsetLeft;   
		while(inceptE = inceptE.offsetParent){
			inceptEX += inceptE.offsetTop;   
			inceptEY += inceptE.offsetLeft;   
		}
		ev.flyArr=new Array(ex,ey,inceptEX,inceptEY,10);
		fly(flyDiv,addEvent);
	}
	//
	function fly(flyObj,flyRun){
		var obj,a=ev.flyArr,x,y
		if(flyObj!=null){
			if(ev.flyObj!=null){
				window.clearTimeout(ev.flyTm);
				ev.flyObj.style.top=-900;
			}
			a[5]=0;
			ev.flyObj=oo(flyObj);
			ev.flyRun=flyRun;
		}
		
		obj=ev.flyObj;
		if(a[4]==null){a[4]=1}
		a[5]+=a[4]/Math.sqrt(Math.pow(a[2]-a[0],2)+Math.pow(a[3]-a[1],2));
		if(a[5]>1){
			obj.style.top=-900;
			eval(ev.flyRun);
			ev.flyObj=null;
			return;
		}
		
		window.clearTimeout(ev.flyTm);
		x=(a[2]-a[0])*a[5]+a[0];
		y=(a[3]-a[1])*a[5]+a[1];
		obj.style.left=x;
		obj.style.top=y;
		document.body.style.overflowX=&#34;hidden&#34;;	
		ev.flyTm=window.setTimeout(&#34;fly()&#34;,10)
	}
	//事件处理
	function addAddress()
	{
		var key=ev.AddInfo;
		if (oo(inceptDiv).value.indexOf(key)==-1)
		{
			oo(inceptDiv).value+=key+&#34;,&#34;;
		}
	}
</script>
<style type=&#34;text/css&#34;>
ul{ list-style:none; margin:0; padding:0;}
li{ margin:0; padding:0;}
#content{width:100%;}
#sendmail{float:left; width:60%;}
#friendlist{float:left; width:30%;}
#bxAddrFly{position:absolute;height:15px; width:50px;background:#e5edf6; border:1px #7F9DB9 solid;display:none;}
#tbAddrTree{ width:190px; float:left; padding:4px;border:1px #7F9DB9 solid;}
#tbAddrTree li{ width:100%; float:left;}
#tbAddrTree a{backgroud: #fff;width: 100%;color:#494949;text-decoration: none;float:left;}
#tbAddrTree a:hover{background: #e5edf6;}
</style>
</head>
<body>
<div id=&#34;content&#34;>
  <div id=&#34;sendmail&#34;>
    <input name=&#34;textfield&#34; type=&#34;text&#34; id=&#34;SendAddress&#34; size=&#34;70&#34;>
  </div>
  <div id=&#34;friendlist&#34;>
    <div id=&#34;tbAddrTree&#34;>
      <ul>
        <li membername=&#34;test0&#34; email=&#34;test0@163.com&#34;><nobr><a>test0</a></nobr></li>
        <li membername=&#34;test1&#34; email=&#34;test1@163.com&#34;><nobr><a>test1</a></nobr></li>
        <li membername=&#34;test2&#34; email=&#34;test2@163.com&#34;><nobr><a>test2</a></nobr></li>
        <li membername=&#34;test3&#34; email=&#34;test3@163.com&#34;><nobr><a>test3</a></nobr></li>
        <li membername=&#34;test4&#34; email=&#34;test4@163.com&#34;><nobr><a>test4</a></nobr></li>
        <li membername=&#34;test5&#34; email=&#34;test5@163.com&#34;><nobr><a>test5</a></nobr></li>
        <li membername=&#34;test6&#34; email=&#34;test6@163.com&#34;><nobr><a>test6</a></nobr></li>
        <li membername=&#34;test7&#34; email=&#34;test7@163.com&#34;><nobr><a>test7</a></nobr></li>
      </ul>
    </div>
    <div id=&#34;bxAddrFly&#34;>&amp;nbsp;</div>
  </div>
</div>
</body>
</html>
</TEXTAREA><br/><INPUT onclick="runEx('temp49292')"  type="button" value="运行此代码"/> <INPUT onclick="doCopy('temp49292')"  type="button" value="复制此代码"/><br/> [Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.runoo.com/blog/default.asp?id=196</link>
			<title><![CDATA[很全面的ad广告]]></title>
			<author>jordanqiu@msn.com(admin)</author>
			<category><![CDATA[网站代码]]></category>
			<pubDate>Thu,09 Aug 2007 17:47:20 +0800</pubDate>
			<guid>http://www.runoo.com/blog/default.asp?id=196</guid>	
		<description><![CDATA[<a href="http://www.knowsky.com/tools/ad/" target="_blank">http://www.knowsky.com/tools/ad/</a><br/>myie或者ff拦截广告功能去除就可以看到，很全面，有代码演示和下载]]></description>
		</item>
		
			<item>
			<link>http://www.runoo.com/blog/default.asp?id=188</link>
			<title><![CDATA[弹出效果]]></title>
			<author>jordanqiu@msn.com(admin)</author>
			<category><![CDATA[网站代码]]></category>
			<pubDate>Fri,27 Jul 2007 09:52:28 +0800</pubDate>
			<guid>http://www.runoo.com/blog/default.asp?id=188</guid>	
		<description><![CDATA[<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.runoo.com/blog/images/html.gif" style="margin:0px 2px -3px 0px"> HTML代码</div><div class="UBBContent"><TEXTAREA rows="8" id="temp87952"> <html><HEAD><TITLE>支付宝 - 网上支付 安全快速！</TITLE>
<META http-equiv=Content-Type content=&#34;text/html; charset=gb2312&#34;>
<META content=网上购物/网上支付/安全支付/安全购物/购物，安全/支付,安全/支付宝/安全,支付/安全，购物/支付,在线/付款,收款/网上,贸易/网上贸易. name=description>
<META content=网上购物/网上支付/安全支付/安全购物/购物，安全/支付,安全/支付宝/安全,支付/安全，购物/支付,在线/付款,收款/网上,贸易/网上贸易. name=keywords><LINK href=&#34;<a href="https://img.alipay.com/img/icon/favicon.ico" target="_blank">https://img.alipay.com/img/icon/favicon.ico</a>&#34; type=image/x-icon rel=icon><LINK href=&#34;<a href="https://img.alipay.com/img/icon/favicon.ico" target="_blank">https://img.alipay.com/img/icon/favicon.ico</a>&#34; type=image/x-icon rel=&#34;shortcut icon&#34;><LINK media=screen href=&#34;<a href="https://img.alipay.com/css/empty.css" target="_blank">https://img.alipay.com/css/empty.css</a>&#34; type=text/css rel=stylesheet><LINK href=&#34;<a href="https://img.alipay.com/pcss/layout.css" target="_blank">https://img.alipay.com/pcss/layout.css</a>&#34; type=text/css rel=stylesheet>
<STYLE type=text/css media=screen>	@import url('<a href="https://img.alipay.com/css/v1.1.css?t=20070514.css" target="_blank">https://img.alipay.com/css/v1.1.css?t=20070514.css</a>');	@import url('<a href="https://img.alipay.com/css/layout.css?t=20070514.css" target="_blank">https://img.alipay.com/css/layout.css?t=20070514.css</a>');	@import url('<a href="https://img.alipay.com/css/component.css?t=20070524.css" target="_blank">https://img.alipay.com/css/component.css?t=20070524.css</a>');	@import url('<a href="https://img.alipay.com/css/form.css?t=20070514.css" target="_blank">https://img.alipay.com/css/form.css?t=20070514.css</a>');	@import url('<a href="https://img.alipay.com/css/tabs.css?t=20070524.css" target="_blank">https://img.alipay.com/css/tabs.css?t=20070524.css</a>');	</STYLE>
</HEAD>
<BODY><A id=n2SPopClickGrab style=&#34;DISPLAY: none; Z-INDEX: 225; POSITION: absolute; BACKGROUND-COLOR: transparent&#34;></A><SPAN id=AllCatPopoverDiv_OuterX><SPAN class=n2Pop onmousemove=oAllCatPopover.mouseMove(event); id=AllCatPopoverDiv onmouseover=oAllCatPopover.mouseOver(); style=&#34;DISPLAY: inline; LEFT: 0px; VISIBILITY: hidden; TOP: 0px&#34; onmouseout=oAllCatPopover.mouseOut(event);><SPAN class=n2>-- CONTENT GOES HERE (simple)--</SPAN></SPAN></SPAN>
<SCRIPT language=javascript src=&#34;<a href="https://img.alipay.com/pjs/quicklinks.js" target="_blank">https://img.alipay.com/pjs/quicklinks.js</a>&#34; type=text/javascript></SCRIPT>
<SCRIPT src=&#34;<a href="https://img.alipay.com/pjs/quicklinks_a.js" target="_blank">https://img.alipay.com/pjs/quicklinks_a.js</a>&#34; type=text/javascript></SCRIPT>
<SCRIPT src=&#34;<a href="https://img.alipay.com/pjs/quicklinks_b.js" target="_blank">https://img.alipay.com/pjs/quicklinks_b.js</a>&#34; type=text/javascript></SCRIPT>
<SCRIPT src=&#34;<a href="https://img.alipay.com/pjs/quicklinks_c.js" target="_blank">https://img.alipay.com/pjs/quicklinks_c.js</a>&#34; type=text/javascript></SCRIPT>
<DIV id=MyMenu>
<DIV class=MyMenubg>
<DIV id=QuickMenu><SPAN><A id=cc href=&#34;#&#34; name=two-tabs|he|all-links>支付宝快速入口</A></SPAN> 
<DIV id=all-links>
<DIV id=MyMenuLinks>
<UL>
<LI class=home><A class=R href=&#34;<a href="https://www.alipay.com/user/ma_index.htm" target="_blank">https://www.alipay.com/user/ma_index.htm</a>&#34;>我的支付宝首页</A> </LI>
<LI>账户管理 
<UL>
<LI><A href=&#34;<a href="https://www.alipay.com/user/account_balance.htm" target="_blank">https://www.alipay.com/user/account_balance.htm</a>&#34;>账户余额查询</A> </LI>
<LI><A href=&#34;<a href="https://www.alipay.com/user/user_info_console.htm" target="_blank">https://www.alipay.com/user/user_info_console.htm</a>&#34;>账户信息管理</A> </LI>
<LI><A href=&#34;<a href="https://www.alipay.com/user/unicard_wizard.htm" target="_blank">https://www.alipay.com/user/unicard_wizard.htm</a>&#34;>支付宝卡通</A> </LI></UL></LI>
<LI>资金管理 
<UL>
<LI><A href=&#34;<a href="https://www.alipay.com/user/inpour_request.htm" target="_blank">https://www.alipay.com/user/inpour_request.htm</a>&#34;>充值</A> </LI>
<LI><A href=&#34;<a href="https://www.alipay.com/user/draw_request.htm" target="_blank">https://www.alipay.com/user/draw_request.htm</a>&#34;>提现</A> </LI>
<LI><A href=&#34;<a href="https://www.alipay.com/user/query_account_detail.htm" target="_blank">https://www.alipay.com/user/query_account_detail.htm</a>&#34;>账户明细查询</A> </LI>
<LI><A href=&#34;<a href="https://www.alipay.com/user/draw_request_query.htm" target="_blank">https://www.alipay.com/user/draw_request_query.htm</a>&#34;>提现申请查询</A> </LI></UL></LI>
<LI>增值服务 
<UL>
<LI><A href=&#34;<a href="https://www.alipay.com/securitycenter/sc_index.htm" target="_blank">https://www.alipay.com/securitycenter/sc_index.htm</a>&#34;>安全中心</A> </LI>
<LI><A href=&#34;<a href="https://www.alipay.com/user/mobile_center.htm" target="_blank">https://www.alipay.com/user/mobile_center.htm</a>&#34;>手机服务</A> </LI>
<LI><A href=&#34;<a href="https://www.alipay.com/user/customize_information.htm" target="_blank">https://www.alipay.com/user/customize_information.htm</a>&#34;>信使</A> </LI>
<LI><A href=&#34;<a href="https://www.alipay.com/static/production/index_ma.htm" target="_blank">https://www.alipay.com/static/production/index_ma.htm</a>&#34;>产品中心</A> </LI></UL></LI></UL></DIV></DIV></DIV></DIV></DIV>
<SCRIPT type=text/javascript>	function userMark(tradeNo)	{	window.open(&#34;<a href="https://www.alipay.com/trade/user_mark_trade.htm?dt_from=" target="_blank">https://www.alipay.com/trade/user_mark_trade.htm?dt_from=</a>&#34; + &#34;&amp;trade_no=&#34; + tradeNo); 	}</SCRIPT>
<DIV class=animatedBox id=goN2UAnimatedBox></DIV></BODY></html></TEXTAREA><br/><INPUT onclick="runEx('temp87952')"  type="button" value="运行此代码"/> <INPUT onclick="doCopy('temp87952')"  type="button" value="复制此代码"/><br/> [Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.runoo.com/blog/default.asp?id=173</link>
			<title><![CDATA[发一个有意思的表单]]></title>
			<author>jordanqiu@msn.com(admin)</author>
			<category><![CDATA[网站代码]]></category>
			<pubDate>Thu,17 May 2007 09:58:40 +0800</pubDate>
			<guid>http://www.runoo.com/blog/default.asp?id=173</guid>	
		<description><![CDATA[<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.runoo.com/blog/images/html.gif" style="margin:0px 2px -3px 0px"> HTML代码</div><div class="UBBContent"><TEXTAREA rows="8" id="temp91421"><SCRIPT language=javascript>
function isIE(){
	var  navName=navigator.appName; 
	if(navName.indexOf('Microsoft')<0){
		return false;
	}
	else{
		return true;
	}
}

function Jtrim(str){
	var p=/\s/g;
	return str.replace(p,&#34;&#34;);
}

function singleCheck(v,tID){
	//var U_v=eval(&#34;document.all.u&#34;+tID);
	var U_v=document.getElementById(&#34;u&#34;+tID);
	var votein_v=document.getElementById(&#34;voteIn&#34;+tID);
	
	U_v.innerHTML=votein_v.value=v.value;
}

function textChange(v,tID){
	var U_v=document.getElementById(&#34;u&#34;+tID);
	var votein_v=document.getElementById(&#34;voteIn&#34;+tID);
	U_v.innerHTML=votein_v.value=v.value;
}


function checkIt(){
	
	if(isIE()){
		var vLabel=document.all.labelID;
	}
	else{
		var vLabel=new Array();
		var vnn=document.getElementsByTagName('input');
		var vnnL=vnn.length;
		for(var j=0;j<vnnL;j++){
			if(vnn[j].id=='labelID'){
				vLabel.push(vnn[j]);
			}
		}
		
	}
	var vL=vLabel.length;
	
	var vT=&#34;voteIn&#34;;
	
	var vIn;
	for(var i=0;i<vL;i++){
		
		vIn=document.getElementById(vT+vLabel[i].value);
		if(Jtrim(vIn.value)==&#34;&#34;){
			alert(&#34;对不起！请完善调查后再提交！&#34;);
			var vU=document.getElementById('u'+vLabel[i].value);
			vU.focus();
			return false;
		}
	}
	
	document.form1.submit();

}
</SCRIPT>
<FORM name=form1 action=&#34;&#34; method=post>

<TABLE cellSpacing=0 cellPadding=2 width=&#34;100%&#34;  border=0>
 <TBODY> 
<TR> 
<TD ><STRONG>1.你是否超级喜欢抓图网(<a href=http://www.zhuatu.com>zhuatu.com</a>)：</STRONG>&amp;nbsp;&amp;nbsp;
<A id=u741 style=&#34;COLOR: #ff3300; TEXT-DECORATION: underline&#34;  onclick=&#34;return false;&#34; href=&#34;#&#34;>&amp;nbsp;&amp;nbsp;</A>&amp;nbsp;&amp;nbsp;
<INPUT id=labelID type=hidden value=741 name=subID[]>
<INPUT id=voteIn741 type=hidden name=voteIn[]>
 </TD>
</TR>
<TR> 
<TD >
<INPUT id=r_id18092 onclick=singleCheck(this,741); type=radio  value=是 name=r741>
<LABEL for=r_id18092>是</LABEL>&amp;nbsp;&amp;nbsp;
<INPUT id=r_id18093 onclick=singleCheck(this,741); type=radio value=否 name=r741>
<LABEL for=r_id18093>否</LABEL>&amp;nbsp;&amp;nbsp; </TD>
</TR>
 <TR> 
<TD  height=6></TD>
</TR>
<TR> 
<TD align=left width=&#34;100%&#34;><STRONG >2.如果你愿意收购，你能承受的价格是多少（单选）：</STRONG>&amp;nbsp;
<A id=u742  style=&#34;COLOR: #ff3300; TEXT-DECORATION: underline&#34; onclick=&#34;return false;&#34;  href=&#34;#&#34;>&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;</A>&amp;nbsp;
<INPUT id=labelID type=hidden value=742  name=subID[]>
<INPUT id=voteIn742 type=hidden name=voteIn[]>
</TD></TR><TR> <TD >
<INPUT id=r_id18094 onclick=singleCheck(this,742); type=radio value=10万元以下 name=r742>
<LABEL for=r_id18094>10万元以下</LABEL>&amp;nbsp;&amp;nbsp;
<INPUT  id=r_id18095 onclick=singleCheck(this,742); type=radio value=30万元~50万元 name=r742>
<LABEL for=r_id18095>30万元~50万元</LABEL>&amp;nbsp;&amp;nbsp;
<INPUT id=r_id18096 onclick=singleCheck(this,742); type=radio value=50万元~80万元 name=r742>
<LABEL  for=r_id18096>50万元~80万元</LABEL>&amp;nbsp;&amp;nbsp;
<INPUT  id=r_id18097 onclick=singleCheck(this,742); type=radio value=80万元~100万元 name=r742>
<LABEL for=r_id18097>80万元~100万元</LABEL>&amp;nbsp;&amp;nbsp;
<INPUT  id=r_id18098 onclick=singleCheck(this,742); type=radio value=100万元~500万元 name=r742>
<LABEL for=r_id18098>100万元~500万元</LABEL>&amp;nbsp;&amp;nbsp;
<INPUT  id=r_id18099 onclick=singleCheck(this,742); type=radio value=1000万元以上 name=r742>
<LABEL  for=r_id18099>1000万元以上</LABEL>&amp;nbsp;&amp;nbsp; </TD>
</TR>
<TR> <TD ><STRONG >3.你收购或不收购的理由：</STRONG>&amp;nbsp;
<A  id=u743 style=&#34;COLOR: #ff3300; TEXT-DECORATION: underline&#34; onclick=&#34;return false;&#34;  href=&#34;#&#34;>&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;</A>&amp;nbsp;
<INPUT  id=labelID type=hidden value=743 name=subID[]>
<INPUT id=voteIn743 type=hidden  name=voteIn[]>
                              </TD>
                            </TR>
                            <TR> 
                              <TD >
                                <INPUT onblur=textChange(this,743) style=&#34;WIDTH: 200px&#34; size=12 name=inText18100>
                              </TD>
                            </TR>
                            
                            <TR> 
                              <TD ><STRONG i>4.你的姓名：</STRONG>&amp;nbsp;
<A id=u744 style=&#34;COLOR: #ff3300; TEXT-DECORATION: underline&#34; onclick=&#34;return false;&#34; href=&#34;#&#34;>&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;</A>&amp;nbsp;
                                <INPUT  id=labelID type=hidden value=744 name=subID[]>
                                <INPUT id=voteIn744 type=hidden  name=voteIn[]>
                              </TD>
                            </TR>
                            <TR> 
                              <TD >
                                <INPUT onblur=textChange(this,744) style=&#34;WIDTH: 200px&#34; size=12 name=inText18101>
                              </TD>
                            </TR>
                           
                            <TR> 
                              <TD ><STRONG>5.联系地址：</STRONG>&amp;nbsp;
<A id=u745 style=&#34;COLOR: #ff3300; TEXT-DECORATION: underline&#34; onclick=&#34;return false;&#34; href=&#34;#&#34;>&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;</A>&amp;nbsp;
                                <INPUT id=labelID type=hidden value=745 name=subID[]>
                                <INPUT id=voteIn745 type=hidden  name=voteIn[]>
                              </TD>
                            </TR>
                            <TR> 
                              <TD >
                                <INPUT onblur=textChange(this,745)  style=&#34;WIDTH: 200px&#34; size=12 name=inText18102>
                              </TD>
                            </TR>
                            
                            <TR> 
                              <TD ><STRONG >6.电话或电子邮件：</STRONG>&amp;nbsp;
 <A id=u746  style=&#34;COLOR: #ff3300; TEXT-DECORATION: underline&#34;  onclick=&#34;return false;&#34; href=&#34;#&#34;>&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;</A>&amp;nbsp;
                                <INPUT  id=labelID type=hidden value=746  name=subID[]>
                                <INPUT id=voteIn746 type=hidden  name=voteIn[]>
                              </TD>
                            </TR>
                            <TR> 
                              <TD>
                                <INPUT onblur=textChange(this,746)  style=&#34;WIDTH: 200px&#34; size=12 name=inText18103>
                              </TD>
                            </TR>
                          </TBODY>
                          </TABLE>
  <INPUT type=hidden value=over name=doit>
                          <INPUT onclick=checkIt(); type=button value=&#34; 提交调查 &#34; name=sub1>
                          &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
                          <INPUT type=reset value=&#34; 全部重填 &#34; name=res1>
                    </FORM>
               
                </TEXTAREA><br/><INPUT onclick="runEx('temp91421')"  type="button" value="运行此代码"/> <INPUT onclick="doCopy('temp91421')"  type="button" value="复制此代码"/><br/> [Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.runoo.com/blog/default.asp?id=171</link>
			<title><![CDATA[左侧导航代码]]></title>
			<author>jordanqiu@msn.com(admin)</author>
			<category><![CDATA[网站代码]]></category>
			<pubDate>Sun,29 Apr 2007 09:46:08 +0800</pubDate>
			<guid>http://www.runoo.com/blog/default.asp?id=171</guid>	
		<description><![CDATA[<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.runoo.com/blog/images/html.gif" style="margin:0px 2px -3px 0px"> HTML代码</div><div class="UBBContent"><TEXTAREA rows="8" id="temp83690"><base href=&#34;<a href="http://www.blueidea.com/articleimg/2003/09/804/" target="_blank">http://www.blueidea.com/articleimg/2003/09/804/</a>&#34;>
<?xml version=&#34;1.0&#34; encoding=&#34;gb2312&#34;?>
<!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&#34;>
<html xmlns=&#34;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&#34;>
<head>
<title>DWMX Tutor --- A Simple Menu</title>
<meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=gb2312&#34; />
<script>// Example: obj = findObj(&#34;image1&#34;);
function findObj(theObj, theDoc)
{
  var p, i, foundObj;
  
  if(!theDoc) theDoc = document;
  if( (p = theObj.indexOf(&#34;?&#34;)) > 0 &amp;&amp; parent.frames.length)
  {
    theDoc = parent.frames[theObj.substring(p+1)].document;
    theObj = theObj.substring(0,p);
  }
  if(!(foundObj = theDoc[theObj]) &amp;&amp; theDoc.all) foundObj = theDoc.all[theObj];
  for (i=0; !foundObj &amp;&amp; i < theDoc.forms.length; i++) 
    foundObj = theDoc.forms[i][theObj];
  for(i=0; !foundObj &amp;&amp; theDoc.layers &amp;&amp; i < theDoc.layers.length; i++) 
    foundObj = findObj(theObj,theDoc.layers[i].document);
  if(!foundObj &amp;&amp; document.getElementById) foundObj = document.getElementById(theObj);
  
  return foundObj;
}
</script>
<style type=&#34;text/css&#34;>
<!--
.folder {
    font-family: &#34;Verdana&#34;, &#34;Arial&#34;, &#34;Helvetica&#34;, &#34;sans-serif&#34;;
    font-size: 10px;
    background-image: url(e.gif);
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 40px;
    cursor: hand;
}
.collapsedFolder {
    font-family: &#34;Verdana&#34;, &#34;Arial&#34;, &#34;Helvetica&#34;, &#34;sans-serif&#34;;
    font-size: 10px;
    background-image: url(c.gif);
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 40px;
    cursor: hand;
}
.submenu {
    padding-left: 18px;
}
.iefile {
    background-image: url(ie.gif);
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 20px;
    font-family: &#34;Verdana&#34;, &#34;Arial&#34;, &#34;Helvetica&#34;, &#34;sans-serif&#34;;
    font-size: 9px;
}
a {
    color: #003399;
    text-decoration: none;
    border: 1px solid #FFFFFF;
}
a:hover {
    color: #FF0000;
    background-color: #eeeeee;
    border: 1px solid #006699;
}
body {
    margin: 0px;
    background-color: buttonface;
    overflow: hidden;
    border: 0px;
}
.ctrlbar {
    border: 1px inset;
}
.explorer {
    background-color: #FFFFFF;
    border: 1px inset;
}
-->
</style>
<style type=&#34;text/css&#34;>
<!--
.ctbutton {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    background-color: #eeeeee;
    border-width: 1px;
    width: 9px;
    height: 100px;
    margin-bottom: 100px;
}
-->
</style>
<base target=&#34;browserframe&#34;/>
</head>

<body>
<table width=&#34;100%&#34; height=&#34;100%&#34; border=&#34;0&#34; cellpadding=&#34;0&#34; cellspacing=&#34;0&#34;>
  <tr>
    <td width=&#34;150&#34; align=&#34;center&#34; valign=&#34;top&#34; class=&#34;explorer&#34; id=&#34;menubar&#34;><br />      
      <img src=&#34;logo.gif&#34; width=&#34;90&#34; height=&#34;27&#34; />      <br />
      <br />      
      <table width=&#34;100%&#34; border=&#34;0&#34; cellspacing=&#34;0&#34; cellpadding=&#34;2&#34; onsel&#101;ctstart=&#34;return false&#34;>
      <tr>
        <td class=&#34;folder&#34; onmouseup=&#34;with(findObj('blueidea').style){display=display=='none'?'':'none';this.style.backgroundImage=display!='none'?'url(e.gif)':'url(c.gif)'}&#34;>Blueidea.com</td>
      </tr>
      <tr>
        <td class=&#34;submenu&#34; id=&#34;blueidea&#34;><table width=&#34;100%&#34; border=&#34;0&#34; cellspacing=&#34;0&#34; cellpadding=&#34;2&#34;>
            <tr>
              <td class=&#34;folder&#34; onmouseup=&#34;with(findObj('forums').style){display=display=='none'?'':'none';this.style.backgroundImage=display!='none'?'url(e.gif)':'url(c.gif)'}&#34;>Forums</td>
            </tr>
            <tr>
              <td class=&#34;submenu&#34; id=&#34;forums&#34;><table width=&#34;100%&#34; border=&#34;0&#34; cellspacing=&#34;0&#34; cellpadding=&#34;2&#34;>
                  <tr>
                    <td class=&#34;iefile&#34;><a href=&#34;<a href="http://bbs.blueidea.com/forumdisplay.php?fid=1" target="_blank">http://bbs.blueidea.com/forumdisplay.php?fid=1</a>&#34;>JS &amp;amp; DWMX</a></td>
                  </tr>
                  <tr>
                    <td class=&#34;iefile&#34;><a href=&#34;<a href="http://bbs.blueidea.com/forumdisplay.php?fid=2" target="_blank">http://bbs.blueidea.com/forumdisplay.php?fid=2</a>&#34;>Developement</a></td>
                  </tr>
                  <tr>
                    <td class=&#34;iefile&#34;><a href=&#34;<a href="http://bbs.blueidea.com/forumdisplay.php?fid=3" target="_blank">http://bbs.blueidea.com/forumdisplay.php?fid=3</a>&#34;>Fireworks</a></td>
                  </tr>
                  <tr>
                    <td class=&#34;iefile&#34;><a href=&#34;<a href="http://bbs.blueidea.com/forumdisplay.php?fid=4" target="_blank">http://bbs.blueidea.com/forumdisplay.php?fid=4</a>&#34;>Flash</a></td>
                  </tr>
                  <tr>
                    <td class=&#34;iefile&#34;><a href=&#34;<a href="http://bbs.blueidea.com/forumdisplay.php?fid=7" target="_blank">http://bbs.blueidea.com/forumdisplay.php?fid=7</a>&#34;>Photoshop</a></td>
                  </tr>
                </table>
              </td>
            </tr>
            <tr>
              <td class=&#34;folder&#34; onmouseup=&#34;with(findObj('others').style){display=display=='none'?'':'none';this.style.backgroundImage=display!='none'?'url(e.gif)':'url(c.gif)'}&#34;>Others</td>
            </tr>
            <tr>
              <td class=&#34;submenu&#34; id=&#34;others&#34;><table width=&#34;100%&#34; border=&#34;0&#34; cellspacing=&#34;0&#34; cellpadding=&#34;2&#34;>
                  <tr>
                    <td class=&#34;iefile&#34;><a href=&#34;<a href="http://www.blueidea.com/download/index.asp" target="_blank">http://www.blueidea.com/download/index.asp</a>&#34;>Download</a></td>
                  </tr>
                  <tr>
                    <td class=&#34;iefile&#34;><a href=&#34;<a href="http://www.blueidea.com/tech/index.asp" target="_blank">http://www.blueidea.com/tech/index.asp</a>&#34;>Documents</a></td>
                  </tr>
                </table>
              </td>
            </tr>
            <tr>
              <td class=&#34;iefile&#34;><a href=&#34;<a href="http://www.blueidea.com/" target="_blank">http://www.blueidea.com/</a>&#34;>Homepage</a></td>
            </tr>
            <tr>
              <td class=&#34;iefile&#34;><a href=&#34;<a href="http://bbs.blueidea.com/" target="_blank">http://bbs.blueidea.com/</a>&#34;>BBS</a></td>
            </tr>
          </table>
        </td>
      </tr>
      <tr>
        <td class=&#34;collapsedFolder&#34; onmouseup=&#34;with(findObj('lexrus').style){display=display=='none'?'':'none';this.style.backgroundImage=display!='none'?'url(e.gif)':'url(c.gif)'}&#34;>LeXRus.com</td>
      </tr>
      <tr>
        <td class=&#34;submenu&#34; id=&#34;lexrus&#34; style=&#34;display:none&#34;><table width=&#34;100%&#34; border=&#34;0&#34; cellpadding=&#34;2&#34; cellspacing=&#34;0&#34;>
            <tr>
              <td class=&#34;iefile&#34;><a href=&#34;<a href="http://www.lexrus.com/" target="_blank">http://www.lexrus.com/</a>&#34;>Homepage</a></td>
            </tr>
            <tr>
              <td class=&#34;iefile&#34;><a href=&#34;<a href="http://lexrus.com/blog/" target="_blank">http://lexrus.com/blog/</a>&#34;>Blog</a></td>
            </tr>
          </table>
        </td>
      </tr>
    </table></td>
    <td width=&#34;1&#34; class=&#34;ctrlbar&#34;><button class=&#34;ctbutton&#34; onfocus=&#34;blur();&#34; onmouseup=&#34;with(findObj('menubar').style){display=display=='none'?'':'none';this.innerText=display=='none'?'&amp;gt;':'&amp;lt;'}&#34; onmouseover=&#34;this.style.backgroundColor='#ffffff'&#34; onmouseout=&#34;this.style.backgroundColor='#eeeeee'&#34;>&amp;lt;</button></td>
    <td class=&#34;explorer&#34;><iframe name=&#34;browserframe&#34; id=&#34;browserframe&#34; width=&#34;100%&#34; height=&#34;100%&#34; scrolling=&#34;auto&#34; frameborder=&#34;0&#34;></iframe></td>
  </tr>
</table>
</body>
</html></TEXTAREA><br/><INPUT onclick="runEx('temp83690')"  type="button" value="运行此代码"/> <INPUT onclick="doCopy('temp83690')"  type="button" value="复制此代码"/><br/> [Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.runoo.com/blog/default.asp?id=167</link>
			<title><![CDATA[比较舒服的table]]></title>
			<author>jordanqiu@msn.com(admin)</author>
			<category><![CDATA[网站代码]]></category>
			<pubDate>Tue,17 Apr 2007 13:53:37 +0800</pubDate>
			<guid>http://www.runoo.com/blog/default.asp?id=167</guid>	
		<description><![CDATA[<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.runoo.com/blog/images/html.gif" style="margin:0px 2px -3px 0px"> HTML代码</div><div class="UBBContent"><TEXTAREA rows="8" id="temp40717"><!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.0 Transitional//EN&#34;>



<html>
<head>
<title>
Striped Tables
</title>

<link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;tables.css&#34; />

<style type=&#34;text/css&#34;>

	#playlist {
		border: 1px solid #666666;
	}

	#playlist tbody tr td {
		font-family: &#34;lucida grande&#34;, verdana, sans-serif;
		font-size: 8pt;
		padding: 3px 8px;
		border-left: 1px solid #D9D9D9;
	}
	
	#playlist tbody tr.sel&#101;cted td {
		background-color: #3d80df;
		color: #ffffff;
		font-weight: bold;
		border-left: 1px solid #346DBE;
		border-bottom: 1px solid #7DAAEA;
	}
</style>


<script type=&#34;text/javascript&#34;>
<!--


  // this function is need to work around 
  // a bug in IE related to element attributes
  function hasClass(obj) {
     var result = false;
     if (obj.getAttributeNode(&#34;class&#34;) != null) {
         result = obj.getAttributeNode(&#34;class&#34;).value;
     }
     return result;
  }   

 function stripe(id) {

    // the flag we'll use to keep track of 
    // whether the current row is odd o&#114; even
    var even = false;
  
    // if arguments are provided to specify the colours
    // of the even &amp; odd rows, then use the them;
    // otherwise use the following defaults:
    var evenColor = arguments[1] ? arguments[1] : &#34;#fff&#34;;
    var oddColor = arguments[2] ? arguments[2] : &#34;#eee&#34;;
  
    // obtain a reference to the desired table
    // if no such table exists, abort
    var table = document.getElementById(id);
    if (! table) { return; }
    
    // by definition, tables can have more than one tbody
    // element, so we'll have to get the list of child
    // &amp;lt;tbody&amp;gt;s 
    var tbodies = table.getElementsByTagName(&#34;tbody&#34;);

    // and iterate through them...
    for (var h = 0; h < tbodies.length; h++) {
    
     // find all the &amp;lt;tr&amp;gt; elements... 
      var trs = tbodies[h].getElementsByTagName(&#34;tr&#34;);
      
      // ... and iterate through them
      for (var i = 0; i < trs.length; i++) {

	    // avoid rows that have a class attribute
        // o&#114; backgroundColor style
	    if (!hasClass(trs[i]) &amp;&amp; ! trs[i].style.backgroundColor) {
 
         // get all the cells in this row...
          var tds = trs[i].getElementsByTagName(&#34;td&#34;);
        
          // and iterate through them...
          for (var j = 0; j < tds.length; j++) {
        
            var mytd = tds[j];

            // avoid cells that have a class attribute
            // o&#114; backgroundColor style
	        if (! hasClass(mytd) &amp;&amp; ! mytd.style.backgroundColor) {
        
		      mytd.style.backgroundColor = even ? evenColor : oddColor;
              
            }
          }
        }
        // flip from odd to even, o&#114; vice-versa
        even =  ! even;
      }
    }
  }
// -->
</script>


</head>
<body onload=&#34;stripe('playlist', '#fff', '#edf3fe');&#34;><a name=&#34;top&#34;></a>

<div id=&#34;bottle&#34;>

<h1>iTunes Stripes</h1>

<table id=&#34;playlist&#34; cellspacing=&#34;0&#34;>
	<tbody>
		<tr>
			<td>1</td>
			<td>Lost In The Plot</td>
			<td>The Dears</td>
		</tr>
		<tr>
			<td>2</td>
			<td>Poison</td>
			<td>The Constantines</td>
		</tr>
		<tr class=&#34;sel&#101;cted&#34;>
			<td>3</td>
			<td>Plea From A Cat Named Virtute</td>
			<td>The Weakerthans</td>
		</tr>
		<tr>
			<td>4</td>
			<td>Melissa Louise</td>
			<td>Chixdiggit!</td>
		</tr>
	</tbody>
	<tbody>		
		<tr>
			<td>5</td>
			<td>Living Room</td>
			<td>Tegan And Sara</td>

		</tr>
		<tr>
			<td>6</td>
			<td>Speed</td>
			<td>Bran Van 3000</td>
		</tr>
		<tr>
			<td>7</td>
			<td>Fast Money Blessing</td>
			<td>King Cobb Steelie</td>
		</tr>
	</tbody>
	<tbody>
		<tr class=&#34;sel&#101;cted&#34;>
			<td>8</td>
			<td>Sore</td>
			<td>Buck 65</td>
		</tr>
		<tr class=&#34;sel&#101;cted&#34;>
			<td>9</td>
			<td>Love Travel</td>
			<td>Danko Jones</td>
		</tr>
		<tr>
			<td>10</td>
			<td>You Never Let Me Down</td>
			<td>Furnaceface</td>
		</tr>	
	</tbody>
	
</table>
</div>

</body>
</html></TEXTAREA><br/><INPUT onclick="runEx('temp40717')"  type="button" value="运行此代码"/> <INPUT onclick="doCopy('temp40717')"  type="button" value="复制此代码"/><br/> [Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.runoo.com/blog/default.asp?id=155</link>
			<title><![CDATA[15个常用js]]></title>
			<author>jordanqiu@msn.com(admin)</author>
			<category><![CDATA[网站代码]]></category>
			<pubDate>Tue,03 Apr 2007 10:59:38 +0800</pubDate>
			<guid>http://www.runoo.com/blog/default.asp?id=155</guid>	
		<description><![CDATA[这里有15个比较常用的js代码,对于网站设计者是必须掌握的,用来提高网站的交互性以及用户体验,包括:Loading,Tables,DatePicker,可拖放窗口,缩略图缩放等等<br/><a target="_blank" href="http://www.webcodr.com/6/15-javascri&#112;t-snippets-you-cant-live-without/"><img src="http://www.runoo.com/blog/attachments/month_0704/g200743105859.jpg" border="0" alt=""/><br/></a>]]></description>
		</item>
		
</channel>
</rss>