没有样式就是最好的样式

Archive for March, 2006


设置opera pagebar(tab) 宽度

Mar 6, 2006 Author: | Filed under: Uncategorized

skin.ini 在[Options]下面加两个参数

Pagebar max button width = 90

Pagebar min button width = 20

via http://my.opera.com/chinese/forums/topic.dml?id=127515

完整skin 资料:

opera skin guide

opera 右键菜单文字编码

Mar 6, 2006 Author: | Filed under: Uncategorized

menu.ini

[Document Popup Menu]

Item, “Auto” = Set encoding, “”

Item, “GB18030″ = Set encoding, “gb18030″

Item, “GB2312″ = Set encoding, “gb2312″

Item, “HKSCS” = Set encoding, “big5-hkscs”

Item, “UTF-8″ = Set encoding, “utf-8″

menu.ini 相关资料

OPML 2.0 (DRAFT草案)发布

Mar 6, 2006 Author: | Filed under: Uncategorized

OPML 2.0 (DRAFT) 发布。

简单地说,OPML常用来交换feed地址源。这是一个 OPML 的例子

Goals of the OPML format

This document describes a format for storing outlines in XML 1.0 called Outline Processor Markup Language or OPML.

The purpose of this format is to provide a way to exchange information between outliners and Internet services that can be browsed or controlled through an outliner.

OPML is also the file format for an outliner application, which is why OPML files may contain information about the size, position and expansion state of the window the outline is displayed in.

OPML has also become popular as a format for exchanging subscription lists between feed readers and aggregators.

这里有个音频文件,Dave Winer 解释 OPML2.0的改变

[Edit on 2006-3-6 14:55:54 By guoshuang]

firefox 插件大赛结果

Mar 4, 2006 Author: | Filed under: Uncategorized

firefox 插件大赛结果出来了,比较失望,前四名除了 web developer 都是 tab 页面预览相关功能,前几天我还在抱怨opera 9 beta 加入的tab预览没什么实际用处…

Extend Firefox Contest Winners

[Edit on 2006-3-5 9:03:58 By guoshuang]

IE 字符编码解释的bug

Mar 4, 2006 Author: | Filed under: Uncategorized

原文来自 最近发现的IE的2个Bug,对于 IE 编码bug 的解释很有意思。结论就一句话:除IE以外浏览器会自动识别出 utf-8 编码,IE将字符编码声明尽量往前放(在中文的title 前),可以参考此文的留言部分

原文如下:

1, IE在处理一些网页上include的文件的时候,会按照网页的解码方式去解析这个被include的文件,而不关心这个文件本身的编码方式,比如一个 GB2312编码方式的文件引用了一个UTF-8编码的js文件,IE可能会用GB2312去解析这个js文件,而不关心这个js文件的http response header中已经告诉IE的charset(实际上为utf-8)。

2, 如果IE在http response header中不能获得encoding,那么IE有的时候会按照某种编码(或者是上次的编码)来处理html,直到找到页面中的设置的charset为止,带来的问题IE不能很好的处理一些多字节的编码,比如如下html代码,注意需要保存为UTF-8编码

新年好

如果在ie中改变解码方式为GB2312,网页上什么都没有出现,再刷新,还是没有,发现解码方式还是为GB2312,而不是html中指定的UTF-8。但是下面这个代码就没有问题

新年好

这个页面在制定GB2312编码之后不能显示,但是只要刷新就可以正确显示,IE会在meta中找到正确的charset

这个问题的原因是因为IE对多字节编码的解析的一个BUG,IE总是很固执的按照第1个字节的特征来看是不是一个多字节字,在页面刷新之后IE 会按照上次的编码方式先去读内容,因为在UTF-8下“新年好”是9个字节,而GB2312下中文只有2个字节,IE会将“好”的最后一个字节和 “<"认为是一个汉字来处理,这样实际上标签就一直没有结束,IE会将后面的”<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />“当作title中的内容,所以这个时候IE就认为找不到charset了,仍然按照GB2312处理网页,导致显示错误。而”新年好啊”是 12个字节,正好在GB2312下也是完整的字节数,这样IE就可以正确解析后面的charset,然后转换用charset中指定的UTF-8编码,这样显示就正确了。</p> <p>避免这个问题的办法是尽量把meta中的charset写在网页的最前面,在出现多字节字符之前。</p> <div class='edit'>[Edit on 2006-3-4 11:01:34 By guoshuang]</div> </div> <div class="clearer"></div> <div class="PostCom"> <li><a href="http://webdesign.guoshuang.com/archives/2006-03-04-3658.html#respond" title="Comment on IE 字符编码解释的bug">0 Comments</a></li> </div> </div> <div class="Post" id="post-3657" style="padding-bottom: 40px;"> <div class="PostHead"><div class="PHT"></div> <h1><a title="Permanent Link to firefox 中对 select option 操作" href="http://webdesign.guoshuang.com/archives/2006-03-04-3657.html" rel="bookmark">firefox 中对 select option 操作</a></h1> <small class="PostTime">Mar 4, 2006 </small> <small class="PostDet"> Author: | Filed under: Uncategorized</small> </div> <div class="PostContent"> <p>其实解决所有类似问题的法宝就是—google it…</p> <p>添加 option。其实IE下方法有好几个,单我没功夫一一测试,需要时请自己 google!</p> <p><textarea rows='12' cols='40' class='bk ohtml' id='temp83589'></p> <select> <p><option value="aaa">123</option></p> <p><option value="bbb">456</option></p> </select> <p><button onclick="myOption=document.getElementsByTagName('select')[0];myOption.options[myOption.options.length]=new Option('guoshuangText','guoshuangValue')">add option</button></p> <p></textarea><img src='images/runcode.gif' onclick='runEx(this)' alt='运行代码' title='运行代码' style='cursor:pointer;' class='absmiddle' /> <span style='color:#ccc;'>[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]</span></p> <p>删除 option 在 firefox 是 select.remove(selectedIndex),而不是 options.remove()</p> <p>输出 option[x].innerText 在 firefox 下用 options[x].textContent(firefox没有innerText,就是用textContent 来替代的)</p> <p><textarea rows='12' cols='40' class='bk ohtml' id='temp56482'></p> <select onchange="alert(this[selectedIndex].textContent)"> <p><option value="aaa">123</option></p> <p><option value="bbb">456</option></p> </select> <p></textarea><img src='images/runcode.gif' onclick='runEx(this)' alt='运行代码' title='运行代码' style='cursor:pointer;' class='absmiddle' /> <span style='color:#ccc;'>[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]</span></p> <div class='edit'>[Edit on 2006-3-4 10:38:30 By guoshuang]</div> </div> <div class="clearer"></div> <div class="PostCom"> <li><a href="http://webdesign.guoshuang.com/archives/2006-03-04-3657.html#respond" title="Comment on firefox 中对 select option 操作">0 Comments</a></li> </div> </div> <!-- Start Nav --> <div class='Nav'><span>Pages (6): </span><a href="http://webdesign.guoshuang.com/archives/2006/03/">« First</a> ... <a href="http://webdesign.guoshuang.com/archives/2006/03/page/4"><strong>«</strong></a> <a href="http://webdesign.guoshuang.com/archives/2006/03/page/2">2</a> <a href="http://webdesign.guoshuang.com/archives/2006/03/page/3">3</a> <a href="http://webdesign.guoshuang.com/archives/2006/03/page/4">4</a> <strong class='on'>5</strong> <a href="http://webdesign.guoshuang.com/archives/2006/03/page/6">6</a> <a href="http://webdesign.guoshuang.com/archives/2006/03/page/6"><strong>»</strong></a><div class='NavEnd'></div></div> <!-- End Nav --> </div> <!-- End SC --> <div class="SR"> <!-- Start Flickr Photostream --> <div class="Flickr"> <h3>Flickr PhotoStream</h3> <ul> <a href="http://www.flickr.com/photos/guoshuang/1384588684/" title="ubuntu_avant_window_navigator"><img src="http://webdesign.guoshuang.com/wp-content/plugins/flickr-imgs/1384588684_2904d7db2c_s.jpg" alt="ubuntu_avant_window_navigator" /></a><a href="http://www.flickr.com/photos/guoshuang/711895916/" title="ubuntustudio theme"><img src="http://webdesign.guoshuang.com/wp-content/plugins/flickr-imgs/711895916_dea0f65c13_s.jpg" alt="ubuntustudio theme" /></a><a href="http://www.flickr.com/photos/guoshuang/532517332/" title="GNU-xga"><img src="http://webdesign.guoshuang.com/wp-content/plugins/flickr-imgs/532517332_000aa5faaa_s.jpg" alt="GNU-xga" /></a><a href="http://www.flickr.com/photos/guoshuang/492043280/" title="Screenshot-x-session-manager"><img src="http://webdesign.guoshuang.com/wp-content/plugins/flickr-imgs/492043280_839bc7945a_s.jpg" alt="Screenshot-x-session-manager" /></a><a href="http://www.flickr.com/photos/guoshuang/492043210/" title="Screenshot-synaptic-1"><img src="http://webdesign.guoshuang.com/wp-content/plugins/flickr-imgs/492043210_a5341a19f7_s.jpg" alt="Screenshot-synaptic-1" /></a> </ul> </div> <!-- End Flickr Photostream --> <div class="SRL"> <div class="Categ"><form method="get" id="searchform" action="http://webdesign.guoshuang.com/"> <div><input type="text" value="" name="s" id="s" /> <input type="submit" id="searchsubmit" value="Search" /> </div> </form> </div> <div class="Categ"> <h3>Recent Posts</h3> <ul> <li><a href="http://webdesign.guoshuang.com/archives/2008-06-04-6168.html">韩国·欧美实用设计分层源文件 12DVD </a></li> <li><a href="http://webdesign.guoshuang.com/archives/2008-06-03-6166.html">Web design stuffs </a></li> <li><a href="http://webdesign.guoshuang.com/archives/2008-02-26-6165.html">动态嵌入 javascript 和 css </a></li> <li><a href="http://webdesign.guoshuang.com/archives/2008-01-27-6156.html">jQuery 动画效果插件 </a></li> <li><a href="http://webdesign.guoshuang.com/archives/2008-01-26-6153.html">关于 css,js 文件后面的数字串 </a></li> </ul> </div> <div class="Categ"> <h3>Recent Comments</h3> <ul id="recentcomments"><li class="recentcomments"><a href='http://www.samyibiz.com' rel='external nofollow'>edhardy</a> on <a href="http://webdesign.guoshuang.com/archives/2008-01-26-6153.html#comment-1358">关于 css,js 文件后面的数字串</a></li><li class="recentcomments">test@test.coom on <a href="http://webdesign.guoshuang.com/archives/2008-01-16-6119.html#comment-1341">jQuery 的缺点</a></li><li class="recentcomments">jessebear on <a href="http://webdesign.guoshuang.com/archives/2006-05-06-3972.html#comment-1340">10 Features You’ll Find Only In Opera</a></li><li class="recentcomments">freezesoul on <a href="http://webdesign.guoshuang.com/archives/2006-03-28-3796.html#comment-613">firefox 拿不到框架中的 getSelection()</a></li><li class="recentcomments">James on <a href="http://webdesign.guoshuang.com/archives/2008-01-12-6094.html#comment-368">简单的 php+mysql 留言板代码</a></li></ul> </div> <div class="Categ"> <h3>Pages</h3> <ul> <li class="page_item page-item-2"><a href="http://webdesign.guoshuang.com/about" title="关于这里">关于这里</a></li> </ul> </div><div class="Categ"><h3>Categories</h3> <ul> <li class="cat-item cat-item-4"><a href="http://webdesign.guoshuang.com/archives/category/css" title="View all posts filed under css">css</a> </li> <li class="cat-item cat-item-6"><a href="http://webdesign.guoshuang.com/archives/category/javascript" title="View all posts filed under javascript">javascript</a> </li> <li class="cat-item cat-item-1"><a href="http://webdesign.guoshuang.com/archives/category/uncategorized" title="View all posts filed under 还没有分类的日志">还没有分类的日志</a> </li> </ul> </div><div class="Categ"><h3>Tags</h3><a href='http://webdesign.guoshuang.com/archives/tag/css' class='tag-link-4' title='1 topic' rel="tag" style='font-size: 8pt;'>css</a> <a href='http://webdesign.guoshuang.com/archives/tag/flickr' class='tag-link-9' title='1 topic' rel="tag" style='font-size: 8pt;'>flickr</a> <a href='http://webdesign.guoshuang.com/archives/tag/javascript' class='tag-link-6' title='1 topic' rel="tag" style='font-size: 8pt;'>javascript</a></div><div class="Categ"><h3>Archives</h3> <ul> <li><a href='http://webdesign.guoshuang.com/archives/2008/06' title='June 2008'>June 2008</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2008/02' title='February 2008'>February 2008</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2008/01' title='January 2008'>January 2008</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2007/12' title='December 2007'>December 2007</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2007/11' title='November 2007'>November 2007</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2007/10' title='October 2007'>October 2007</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2007/09' title='September 2007'>September 2007</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2007/08' title='August 2007'>August 2007</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2007/07' title='July 2007'>July 2007</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2007/06' title='June 2007'>June 2007</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2007/05' title='May 2007'>May 2007</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2007/04' title='April 2007'>April 2007</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2007/03' title='March 2007'>March 2007</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2007/02' title='February 2007'>February 2007</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2007/01' title='January 2007'>January 2007</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2006/12' title='December 2006'>December 2006</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2006/11' title='November 2006'>November 2006</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2006/09' title='September 2006'>September 2006</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2006/08' title='August 2006'>August 2006</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2006/07' title='July 2006'>July 2006</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2006/06' title='June 2006'>June 2006</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2006/05' title='May 2006'>May 2006</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2006/04' title='April 2006'>April 2006</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2006/03' title='March 2006'>March 2006</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2006/02' title='February 2006'>February 2006</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2006/01' title='January 2006'>January 2006</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2005/12' title='December 2005'>December 2005</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2005/11' title='November 2005'>November 2005</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2005/10' title='October 2005'>October 2005</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2005/09' title='September 2005'>September 2005</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2005/08' title='August 2005'>August 2005</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2005/07' title='July 2005'>July 2005</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2005/06' title='June 2005'>June 2005</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2005/05' title='May 2005'>May 2005</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2005/04' title='April 2005'>April 2005</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2005/03' title='March 2005'>March 2005</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2005/02' title='February 2005'>February 2005</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2005/01' title='January 2005'>January 2005</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2004/12' title='December 2004'>December 2004</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2004/11' title='November 2004'>November 2004</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2004/10' title='October 2004'>October 2004</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2004/09' title='September 2004'>September 2004</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2004/08' title='August 2004'>August 2004</a></li> <li><a href='http://webdesign.guoshuang.com/archives/2004/07' title='July 2004'>July 2004</a></li> </ul> </div><div class="Categ"><h3>Blogroll</h3> <ul class='xoxo blogroll'> <li><a href="http://blog.guoshuang.com" rel="me" title="guoshuang blog" target="_top">guoshuang blog</a></li> <li><a href="http://wiki.guoshuang.com/" rel="me" title="Guoshuang Wiki" target="_top">Guoshuang Wiki</a></li> <li><a href="http://labs.guoshuang.com" rel="me" title="labs of guoshuang" target="_top">labs of guoshuang</a></li> <li><a href="http://www.ubuntu4life.com" rel="me" title="ubuntu4life" target="_top">ubuntu4life</a></li> <li><a href="http://ubuntu.guoshuang.com">ubuntulife of guoshuang</a></li> <li><a href="http://aveo.guoshuang.com" rel="spouse" title="我爱乐骋" target="_top">我爱乐骋</a></li> <li><a href="http://psp.guoshuang.com" rel="child" title="童童的PSP网站" target="_top">童童的PSP网站</a></li> </ul> </div> <div class="Categ"> <h3>Meta</h3> <ul> <li><a href="http://webdesign.guoshuang.com/wp-login.php">Log in</a></li> <li><a href="http://webdesign.guoshuang.com/feed" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li> <li><a href="http://webdesign.guoshuang.com/comments/feed" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li> <li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.org</a></li> </ul> </div></div> <div class="SRR"> <h3>Advertising</h3> <script type="text/javascript"><!-- google_ad_client = "pub-3332674173523723"; /* 160x600, created 3/4/08 */ google_ad_slot = "8263104448"; google_ad_width = 160; google_ad_height = 600; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> </div> <!-- Container --> </div></div> <div class="EBG"><div class="Extra"> <!-- Start Recent Comments --> <div class="Cols"> <h3>Most Popular</h3> <ul> <li><a href="http://webdesign.guoshuang.com/archives/2008-01-26-6153.html" title="关于 css,js 文件后面的数字串">关于 css,js 文件后面的数字串</a> (4)</li><li><a href="http://webdesign.guoshuang.com/archives/2007-04-09-5153.html" title="opera 安装 flash 插件的另类方法">opera 安装 flash 插件的另类方法</a> (2)</li><li><a href="http://webdesign.guoshuang.com/archives/2008-01-12-6094.html" title="简单的 php+mysql 留言板代码">简单的 php+mysql 留言板代码</a> (2)</li><li><a href="http://webdesign.guoshuang.com/archives/2007-01-29-4819.html" title="opera switch proxy">opera switch proxy</a> (1)</li><li><a href="http://webdesign.guoshuang.com/archives/2007-09-15-5698.html" title="什么是 KML">什么是 KML</a> (1)</li><li><a href="http://webdesign.guoshuang.com/archives/2007-06-27-5451.html" title="safari for windows">safari for windows</a> (1)</li><li><a href="http://webdesign.guoshuang.com/archives/2008-02-26-6165.html" title="动态嵌入 javascript 和 css">动态嵌入 javascript 和 css</a> (1)</li><li><a href="http://webdesign.guoshuang.com/archives/2008-01-24-6150.html" title="swfupload 文件上传">swfupload 文件上传</a> (1)</li><li><a href="http://webdesign.guoshuang.com/archives/2005-12-26-3296.html" title="用 flocker 转换 firefox 的插件到 flock">用 flocker 转换 firefox 的插件到 flock</a> (1)</li><li><a href="http://webdesign.guoshuang.com/archives/2006-03-28-3796.html" title="firefox 拿不到框架中的 getSelection()">firefox 拿不到框架中的 getSelection()</a> (1)</li> </ul> </div> <!-- End Recent Comments --> <!-- Start Recent Comments --> <div class="Cols" style="margin:0px 30px"> <h3>Recent Comments</h3> <ul> <li>edhardy: <a href="http://webdesign.guoshuang.com/archives/2008-01-26-6153.html#comment-1358" title="View the entire comment by edhardy">what 's this</a></li><li>test@test.coom: <a href="http://webdesign.guoshuang.com/archives/2008-01-16-6119.html#comment-1341" title="View the entire comment by test@test.coom">2.跨框架的执行?如何写呢? jQuery( "div.test" , window.frames[0].document );//查询frames[0]中的内容 parent.jQuery("#div1",document);//在子页面使用父页面的的jQuery操作子页面内容</a></li><li>jessebear: <a href="http://webdesign.guoshuang.com/archives/2006-05-06-3972.html#comment-1340" title="View the entire comment by jessebear">All these functions are not</a></li><li>freezesoul: <a href="http://webdesign.guoshuang.com/archives/2006-03-28-3796.html#comment-613" title="View the entire comment by freezesoul">可以的</a></li><li>James: <a href="http://webdesign.guoshuang.com/archives/2008-01-12-6094.html#comment-368" title="View the entire comment by James">Just for a test! Thanks</a></li><li>OK: <a href="http://webdesign.guoshuang.com/archives/2007-04-09-5153.html#comment-300" title="View the entire comment by OK">先下载Universal Extractor这个解包工具 拖放下载回来的flash player for opera</a></li><li>lroncoffee: <a href="http://webdesign.guoshuang.com/archives/2005-12-26-3296.html#comment-183" title="View the entire comment by lroncoffee">那么,那里可以得到这个flocker呢?百度和google中都没有找到,如果可以发一个到我的Email将不胜感激!</a></li><li>ff: <a href="http://webdesign.guoshuang.com/archives/2008-01-24-6150.html#comment-181" title="View the entire comment by ff">ss</a></li><li>ff: <a href="http://webdesign.guoshuang.com/archives/2008-01-12-6094.html#comment-180" title="View the entire comment by ff">fvvvvvvvvvvvvvv</a></li><li>土豆: <a href="http://webdesign.guoshuang.com/archives/2007-04-09-5153.html#comment-105" title="View the entire comment by 土豆">没看懂.....好想先解决这个问题 ....</a></li> </ul> </div> <!-- End Recent Comments --> <!-- Start Latest Entries --> <div class="Cols"> <h3>Latest Entries</h3> <ul> <li><a href="http://webdesign.guoshuang.com/archives/2008-06-04-6168.html" rel="bookmark" title="Permanent Link: 韩国·欧美实用设计分层源文件 12DVD">韩国·欧美实用设计分层源文件 12DVD</a></li><li><a href="http://webdesign.guoshuang.com/archives/2008-06-03-6166.html" rel="bookmark" title="Permanent Link: Web design stuffs">Web design stuffs</a></li><li><a href="http://webdesign.guoshuang.com/archives/2008-02-26-6165.html" rel="bookmark" title="Permanent Link: 动态嵌入 javascript 和 css">动态嵌入 javascript 和 css</a></li><li><a href="http://webdesign.guoshuang.com/about" rel="bookmark" title="Permanent Link: 关于这里">关于这里</a></li><li><a href="http://webdesign.guoshuang.com/archives/2008-01-27-6156.html" rel="bookmark" title="Permanent Link: jQuery 动画效果插件">jQuery 动画效果插件</a></li><li><a href="http://webdesign.guoshuang.com/archives/2008-01-26-6153.html" rel="bookmark" title="Permanent Link: 关于 css,js 文件后面的数字串">关于 css,js 文件后面的数字串</a></li><li><a href="http://webdesign.guoshuang.com/archives/2008-01-24-6150.html" rel="bookmark" title="Permanent Link: swfupload 文件上传">swfupload 文件上传</a></li><li><a href="http://webdesign.guoshuang.com/archives/2008-01-24-6148.html" rel="bookmark" title="Permanent Link: markupnow 代码分析">markupnow 代码分析</a></li><li><a href="http://webdesign.guoshuang.com/archives/2008-01-23-6141.html" rel="bookmark" title="Permanent Link: jquery trim()">jquery trim()</a></li><li><a href="http://webdesign.guoshuang.com/archives/2008-01-23-6140.html" rel="bookmark" title="Permanent Link: Ajax 搜索 guoshuang blog">Ajax 搜索 guoshuang blog</a></li> </ul> </div> <!-- End Latest Entries --> </div></div> <div class="FBG"> <div class="Footer"> <p><strong>Copyright © 2007 - 郭爽的网页设计资料 - is proudly powered by <a style="text-decoration: none;" href="http://www.wordpress.com/">WordPress</a></strong> <br /> Gossip City Theme is created by: <a href="http://www.designdisease.com/" title="Professional Blog Design">Design Disease</a> brought to you by <a href="http://www.celebrific.com/" title="Celebrity Gossip">Celebrific.</a></p> </div> </div> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> var pageTracker = _gat._getTracker("UA-107039-5"); pageTracker._initData(); pageTracker._trackPageview(); </script> </body> </html>