<?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>ZH CEXO's BLOG &#187; web2.0</title>
	<atom:link href="http://www.zhcexo.com/tag/web20/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zhcexo.com</link>
	<description>探寻网络 分享发现</description>
	<lastBuildDate>Thu, 22 Dec 2011 08:16:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>使用CSS美化文件上传表单</title>
		<link>http://www.zhcexo.com/css-input-file-area/</link>
		<comments>http://www.zhcexo.com/css-input-file-area/#comments</comments>
		<pubDate>Mon, 16 May 2011 09:14:33 +0000</pubDate>
		<dc:creator>ZH CEXO</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[web2.0]]></category>
		<category><![CDATA[学习]]></category>
		<category><![CDATA[教程]]></category>

		<guid isPermaLink="false">http://www.zhcexo.com/?p=1192</guid>
		<description><![CDATA[开发webapp的朋友们应该对&#60;input type=&#8221;file&#8221; /&#62;这样的表单元素不陌生吧，虽然我从来没接触过=_=。今天看到Mr.Think同学更新了一篇博客《利用label标签和CSS美化文件上传表单》，不过demo里面好像失效了&#8230;&#8230;提到这里，我就把我知道的美化这样元素的方法分享一下吧。

DEMO在这里。

要说input[type=file]类型完全不支持CSS也不对，只是很多关于样式化的CSS方法对它无效，是出于安全的目的。不过position、z-index、opacity这些CSS属性还是支持的，所以就用这些方法来变通。

<span class="readmore"><a href="http://www.zhcexo.com/css-input-file-area/" title="使用CSS美化文件上传表单">阅读全文——共1373字</a></span>]]></description>
			<content:encoded><![CDATA[<p>开发webapp的朋友们应该对&lt;input type=&rdquo;file&rdquo; /&gt;这样的表单元素不陌生吧，虽然我从来没接触过=_=。今天看到Mr.Think同学更新了一篇博客《<a title="利用label标签和CSS美化文件上传表单" href="http://mrthink.net/css-input-label-file/" target="_blank">利用label标签和CSS美化文件上传表单</a>》，不过demo里面好像失效了&hellip;&hellip;提到这里，我就把我知道的美化这样元素的方法分享一下吧。</p>
<p><a title="用CSS的方法美化上传表单 - demo by zhcexo" href="http://www.zhcexo.com/demo-html/20110516/input_file.html" target="_blank">DEMO在这里</a>。</p>
<p>要说input[type=file]类型完全不支持CSS也不对，只是很多关于样式化的CSS方法对它无效，是出于安全的目的。不过position、z-index、opacity这些CSS属性还是支持的，所以就用这些方法来变通。</p>
<p><span id="more-1192"></span></p>
<h3>核心思想</h3>
<p>其实我是把样式都加在了input[type=file]的父元素上了，当然你也可以使用它的兄弟元素等，根据项目的实际需要来定吧。然后用css把input[type=file]的透明度设置0。这样一来，虽然用户的眼睛不可见，但它还是存在于网页的那个地方，鼠标方面的交互也是可以做的。至于鼠标移入和移出时候的效果，就对其父元素指定hover状态和非hover状态时的样式。</p>
<p>另外，在上传按钮的交互上，IE和非IE系的不一样。IE里面，点击按钮前面的像文本框一样的部分是没用的，得点击&ldquo;浏览&rdquo;的按钮才会有窗口弹出。而在非IE里，点击框或者按钮都会有窗口弹出，所以为了解决在IE下的问题，使用position定位的时候，把按钮部分对准有样式的地方。图解一下（透明度非0时的状态）：</p>
<p style="text-align: center"><img alt="使用CSS美化文件上传表单" src="http://www.zhcexo.com/demo-html/20110516/inputfile.png" title="使用CSS美化文件上传表单" /></p>
<p>关键代码我也给一下：</p>
<pre>
/*设置input[type=file]父元素的样式*/
#input_file .right{
	float:left;
	width:100px;
	height:29px;
	margin-top:-6px;
	margin-left:10px;
	padding-top:4px;
	overflow:hidden;
	background:url(btn_bg.png) center top no-repeat;
	/*为子元素定位着想，使用relative*/
	position:relative;
}
/*鼠标在hover状态时样式的切换*/
#input_file .right:hover{
	background:url(btn_bg.png) center bottom no-repeat;
}
/*设置透明度，通用方法和IE专属方法*/
#input_file .right input{
	position:absolute;
	/*把浏览按钮置于交互中心，解决IE的问题*/
	right:0;
	opacity:0;
	filter:alpha(opacity=0);
}
</pre>
<h3>已知问题</h3>
<p>+ IE6不支持非&lt;a&gt;标签的hover状态，所以鼠标悬浮的交互在IE6下无法实现，完美主义者请使用JS。</p>
<p>+ 看上图就知道，IE上鼠标点到&ldquo;浏览&rdquo;按钮才会有效，所以左边的框部分点了不会有选择文件的窗口弹出，与鼠标悬浮的交互效果有些不协调，并且鼠标指针的样式无法定义。</p>
<p>+ 更好的交互效果？更便利的定制外观？哥们，用flash吧，CSS做不到，至少我做不到&hellip;&hellip;</p>
<h3>关于DEMO</h3>
<p>DEMO是我写的无误，设计图是国外网站上下载的，小巧的界面有点像网盘上传的界面，有需要的同学们直接拿去吧，呵呵。</p>
<h3  class="related_post_title">相关阅读</h3><ul class="related_post"><li><a href="http://www.zhcexo.com/css3-cool-tip/" title="用CSS3创建漂亮的链接提示">用CSS3创建漂亮的链接提示</a></li><li><a href="http://www.zhcexo.com/css-round-corner/" title="我能想到的圆角背景的实现方法">我能想到的圆角背景的实现方法</a></li><li><a href="http://www.zhcexo.com/simple-slide-menu-with-jquery/" title="用jQuery创建简单的滑动导航菜单">用jQuery创建简单的滑动导航菜单</a></li><li><a href="http://www.zhcexo.com/simple-gr-update-to-1-31/" title="GM脚本：Simple Google Reader Style V1.31">GM脚本：Simple Google Reader Style V1.31</a></li><li><a href="http://www.zhcexo.com/simple-gr-update-to-1-3/" title="GM脚本：Simple Google Reader Style V1.3">GM脚本：Simple Google Reader Style V1.3</a></li><li><a href="http://www.zhcexo.com/bottons-with-jquery-css3/" title="用jQuery或者CSS3创建简单的动态按钮">用jQuery或者CSS3创建简单的动态按钮</a></li><li><a href="http://www.zhcexo.com/tips-for-jquery-animation/" title="jQuery中处理动画序列引起的问题">jQuery中处理动画序列引起的问题</a></li><li><a href="http://www.zhcexo.com/introduction-of-box-shadow/" title="box-shadow用法简介">box-shadow用法简介</a></li><li><a href="http://www.zhcexo.com/cnbeta-user-script/" title="とあるcnbeta的脚本">とあるcnbeta的脚本</a></li><li><a href="http://www.zhcexo.com/javascript-object-properties/" title="使用JavaScript对象属性防止变量被影响">使用JavaScript对象属性防止变量被影响</a></li></ul><hr />
<p>© ZH CEXO for <a href="http://www.zhcexo.com">ZH CEXO's BLOG</a>, 2011. |
<a href="http://www.zhcexo.com/css-input-file-area/">查看原文</a> |
<a href="http://www.zhcexo.com/css-input-file-area/#comments">11 条评论</a>
<br/>
标签: <a href="http://www.zhcexo.com/tag/web20/" rel="tag">web2.0</a>, <a href="http://www.zhcexo.com/tag/study/" rel="tag">学习</a>, <a href="http://www.zhcexo.com/tag/tutorial/" rel="tag">教程</a><br/>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.zhcexo.com/css-input-file-area/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>15+帮你缩短URL的网站</title>
		<link>http://www.zhcexo.com/15-sites-shorten-your-urls/</link>
		<comments>http://www.zhcexo.com/15-sites-shorten-your-urls/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 15:00:58 +0000</pubDate>
		<dc:creator>ZH CEXO</dc:creator>
				<category><![CDATA[互联网络]]></category>
		<category><![CDATA[web2.0]]></category>
		<category><![CDATA[网站推荐]]></category>
		<category><![CDATA[试用]]></category>

		<guid isPermaLink="false">http://www.linxo.cn/blog/?p=364</guid>
		<description><![CDATA[像Twitter这样的微博客服务大家应该用过吧，在国内的话，可能饭否更方便一点，别的不说，这样的网站里面写东西是有字数限制的，如果你在网上找到了什么好玩的或者有用的东西想和你的朋友们分享，可能发一个长的链接都不行，更不用说评价些什么了，这个时候，缩短你的URL相当重要。Linxo.cn在这里向你推荐15个这样的网站，希望能够帮到你。



1. doiop

<span class="readmore"><a href="http://www.zhcexo.com/15-sites-shorten-your-urls/" title="15+帮你缩短URL的网站">阅读全文——共1673字</a></span>]]></description>
			<content:encoded><![CDATA[<p>像Twitter这样的微博客服务大家应该用过吧，在国内的话，可能饭否更方便一点，别的不说，这样的网站里面写东西是有字数限制的，如果你在网上找到了什么好玩的或者有用的东西想和你的朋友们分享，可能发一个长的链接都不行，更不用说评价些什么了，这个时候，缩短你的URL相当重要。<a href="http://www.zhcexo.com/" target="_blank">Linxo.cn</a>在这里向你推荐15个这样的网站，希望能够帮到你。</p>
<p><span id="more-364"></span></p>
<p><strong><a href="http://doiop.com" target="_blank">1. doiop</a></strong></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2Fxcjjzh%2FSMkZh5_J1UI%2FAAAAAAAABQM%2F9cy-CIACDSs%2Fs800%2Fsurl-1.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>doiop是一个支持自定义关键字的URL瘦身网站，你可以把一个很长的链接地址提交给它，接着给几个简单的字母描述它作为关键字，那么这几个字母就会包含在生成的新网址里面，前提是你提供的关键字没有被他人使用过。如果自定义关键字那一栏留空，那么生成的链接地址里面是几个随机的字母。</p>
<p><strong><a href="http://tinyurl.com/" target="_blank">2. TinyURL.com</a></strong></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2Fxcjjzh%2FSMkZiDose8I%2FAAAAAAAABQU%2FYLV36m11Fms%2Fs800%2Fsurl-2.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>TinyURL.com这个网站大家很多人都知道了，用得也最多，在网站的LOGO下面，说的是已经有一亿以上的链接被缩短，而且平均每月有15亿次的点击率，平时我用得比较多点。网站提供一段javascript代码，把它保存在浏览器书签工具栏里，以后转化方便。同doiop，也支持自定义关键字，但我定了几次都没成功，估计是我想的词都没特色，还是随机码好&gt;_&lt;</p>
<p><strong><a href="http://memurl.com/" target="_blank">3. memurl</a></strong></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2Fxcjjzh%2FSMkZiaQVeuI%2FAAAAAAAABQc%2FmvB3I9FcD2E%2Fs800%2Fsurl-3.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>这个网站生成链接没有自定义关键字的选项，但是它生成的网址可以被跟踪，以后你再去memurl提交你生成过的网址时，它会显示链接被点击过多少次等信息，用作统计是个不错的选择。</p>
<p><strong><a href="http://www.is.gd/" target="_blank">4. is.gd</a></strong></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2Fxcjjzh%2FSMkZjCOwHII%2FAAAAAAAABQ0%2FvXE-8E8pL0k%2Fs800%2Fsurl-6.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>这个网站的域名比较短吧，所以它生成的地址也很短，反正我试了比TinyURL短，虽然不用搞得那么极端。</p>
<p><strong><a href="http://jmp2.net/en_us/" target="_blank">5. Jump2.net</a></strong></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2Fxcjjzh%2FSMkZkKha9VI%2FAAAAAAAABRM%2FRT110GfPC-E%2Fs800%2Fsurl-9.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>这个网站提供多国语言版本，其中就包含有中文，但是<a href="http://www.zhcexo.com/" target="_blank">Linxo.cn</a>在这里看来简直就像是用翻译器汉化的，不是很准确。它的特别之处就在于可以隐藏原始链接的具体地址而仅在浏览器里显示生成的地址，和以上几个跳转网站不一样。</p>
<p><strong><a href="http://www.xaddr.com/" target="_blank">6. xaddr.com</a></strong></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2Fxcjjzh%2FSMkZlJ0QroI%2FAAAAAAAABRc%2FIB2JRAx_P40%2Fs800%2Fsurl-11.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>这个网站提供的服务不是很爽，它并是不直接用生成的地址来跳到你想要的地方，而是先跳到它的网站，它再把原始链接提供给你，诸多不便。</p>
<p><strong><a href="http://www.url.ie/" target="_blank">7. URL.ie</a></strong></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2Fxcjjzh%2FSMkZjvORAcI%2FAAAAAAAABQ8%2FMIesiys0iu8%2Fs800%2Fsurl-7.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>由于域名短，用的人也不在多数，所以生成的链接比较短，强求字数的去试一下。</p>
<p><strong><a href="http://www.w3t.org/" target="_blank">8. W3T</a></strong></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2Fxcjjzh%2FSMkZkShJHpI%2FAAAAAAAABRU%2FkGpHG4bxx1w%2Fs800%2Fsurl-10.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>乍一看，看成W3C了，囧~功能不特殊，能自定义关键字而已~</p>
<p><strong><a href="http://www.snipurl.com/" target="_blank">9. SNIPURL</a></strong></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2Fxcjjzh%2FSMkZlYS4z6I%2FAAAAAAAABRk%2F0M4v5VqIYNg%2Fs800%2Fsurl-12.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>语言为繁体中文，不单提供URL瘦身功能，还可以注册，方便管理你生成的链接。网站下方还提供javascript函数代码，把代码保存为书签放在浏览器书签工具栏上，可以最快的转换你的URL，同时网站上还提供了API，可以在你的网站上使用。</p>
<p><strong><a href="http://dwarfurl.com/" target="_blank">10. dwarfurl</a></strong></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2Fxcjjzh%2FSMkZihXxHaI%2FAAAAAAAABQk%2Fa6vwGHx2Dnk%2Fs800%2Fsurl-4.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>在你生成链接的时候网站允许你为你的链接加上密码，以后凭着密码和生成的链接地址就可以访问关于链接被点次数的信息，不像memurl那样是公开的。另外，网站上还提供转化功能的Firefox扩展，安装之后能迅速转化你的链接，对于使用微博客+Firefox比较多的人来说是很不错的。</p>
<p><strong><a href="http://www.easyurl.net/" target="_blank">11. easyURL</a></strong></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh6.gouride.com%2Fxcjjzh%2FSMkZj4XtcOI%2FAAAAAAAABRE%2FaIJJA13dBzY%2Fs800%2Fsurl-8.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>这个网站的域名不够短？那么它还提供其他的三个域名可供生成的网址作跳转，可以自定义关键字，可以跟踪链接的状况，不错的选择~</p>
<p><a href="http://rubyurl.com/" target="_blank"><strong>12. rubyurl</strong></a></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh5.gouride.com%2Fxcjjzh%2FSMkZix145VI%2FAAAAAAAABQs%2F-n_dly5SE-A%2Fs800%2Fsurl-5.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>网站没有别的功能，但是生成链接的按钮是一个javascript做的链接，网站建议你把这个链接保存在浏览器书签工具栏里，方便以后快速转化。</p>
<p><a href="http://nsfw.in/" target="_blank"><strong>13. NSFW</strong></a></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh3.gouride.com%2Fxcjjzh%2FSMkZl6LCWOI%2FAAAAAAAABRs%2FjbN3xbwGcd0%2Fs800%2Fsurl-13.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>网站的主题词写的是，制作更短更安全的链接，但我觉得，短还可以，安全谈不上，因为生成的链接你使用的话，会先跳到NSFW的网站，然后提示说“你真要打开这个地址吗”，但是链接是否安全，它没说~</p>
<p><a href="http://www.simpl.es/" target="_blank"><strong>14. simpl.es</strong></a></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2Fxcjjzh%2FSMkZl1JX4FI%2FAAAAAAAABR0%2F9bESdCIiLH0%2Fs800%2Fsurl-14.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>这个网站生成了链接后，只要你提供你的twitter的帐号和密码，它就会自动地在你的twitter里发一句说，“嘿，我正在看……（URL）”，只不过是英文版的。网站下面说，“我们保证，绝对不保存任何用户的隐私数据”……</p>
<p><a href="http://go.6.cn/" target="_blank"><strong>15. 6.cn精巧网址</strong></a></p>
<p><a href="http://www.zhcexo.com/"><img src="http://www.zhcexo.com/wp-content/plugins/pika/readimg.php?src=http%3A%2F%2Flh4.gouride.com%2Fxcjjzh%2FSMkevyb3QJI%2FAAAAAAAABR8%2FkASjyBGbLW8%2Fs800%2Fsurl-15.jpg" alt="15+帮你缩短URL的网站"  title="15+帮你缩短URL的网站" /></a></p>
<p>国产的，很方便，知道的人也多，我就不多说了~</p>
<p><strong><a href="http://www.zhcexo.com/" target="_blank">结语</a></strong></p>
<p>其实这样的网站还有很多，不过<a href="http://www.zhcexo.com/" target="_blank">Linxo.cn</a>测试的时候发现，其他的一些类似网站被墙了，要用TOR访问，不方便，打开的速度也慢，没什么意义。这15+，应该够你用了吧~</p>
<h3  class="related_post_title">相关阅读</h3><ul class="related_post"><li><a href="http://www.zhcexo.com/arrange-to-do/" title="安排日程，它们帮你搞定（上）">安排日程，它们帮你搞定（上）</a></li><li><a href="http://www.zhcexo.com/word-cloud-for-your-site/" title="给你的网站加上漂亮的“文字云”">给你的网站加上漂亮的“文字云”</a></li><li><a href="http://www.zhcexo.com/picture-editing-online-site-flauntr/" title="怪物级的在线图片处理网站flauntr">怪物级的在线图片处理网站flauntr</a></li><li><a href="http://www.zhcexo.com/css-input-file-area/" title="使用CSS美化文件上传表单">使用CSS美化文件上传表单</a></li><li><a href="http://www.zhcexo.com/enable-firefox-4-beta-4-direct-2d/" title="开启Firefox 4 Beta 4的Direct2D加速">开启Firefox 4 Beta 4的Direct2D加速</a></li><li><a href="http://www.zhcexo.com/merry-xmas-and-tweets/" title="圣诞节快乐和一些杂事">圣诞节快乐和一些杂事</a></li><li><a href="http://www.zhcexo.com/use-ftp-client-online/" title="不用客户端也能进行FTP管理">不用客户端也能进行FTP管理</a></li><li><a href="http://www.zhcexo.com/system-clean-software-ncleaner/" title="扔掉你的CCleaner——小巧强大的nCleaner">扔掉你的CCleaner——小巧强大的nCleaner</a></li><li><a href="http://www.zhcexo.com/export-pdf-files-online/" title="在线导出PDF的好去处">在线导出PDF的好去处</a></li><li><a href="http://www.zhcexo.com/other-choices-exclude-microsoft-office/" title="MS Office之外的选择">MS Office之外的选择</a></li></ul><hr />
<p>© ZH CEXO for <a href="http://www.zhcexo.com">ZH CEXO's BLOG</a>, 2008. |
<a href="http://www.zhcexo.com/15-sites-shorten-your-urls/">查看原文</a> |
<a href="http://www.zhcexo.com/15-sites-shorten-your-urls/#comments">23 条评论</a>
<br/>
标签: <a href="http://www.zhcexo.com/tag/web20/" rel="tag">web2.0</a>, <a href="http://www.zhcexo.com/tag/recommend-site/" rel="tag">网站推荐</a>, <a href="http://www.zhcexo.com/tag/test/" rel="tag">试用</a><br/>
</p>]]></content:encoded>
			<wfw:commentRss>http://www.zhcexo.com/15-sites-shorten-your-urls/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
	</channel>
</rss>

