<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feed.knitdream.com/styles/podcast2.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" version="2.0"><channel><atom:link href="http://feed.knitdream.com" type="application/rss+xml" ref="self"></atom:link><fs:self_link href="http://feed.feedsky.com/knitdream" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 24 Jul 2008 05:14:01 GMT</lastBuildDate><title>编织の梦想</title><description>同一个梦想，同一片天空！</description><image><url>http://www.feedsky.com/feed/knitdream/sc/gif</url><title>编织の梦想</title><link>http://www.knitdream.com/</link></image><link>http://www.knitdream.com/</link><language>zh-CN</language><copyright>Copyright &amp;amp;copy; 2006-2009 KnitDream.com All Rights Reserved.    蜀ICP备07000529号&amp;amp;nbsp;           _uacct = &amp;quot;UA-1503972-1&amp;quot;;urchinTracker();</copyright><pubDate>Thu, 24 Jul 2008 05:24:44 GMT</pubDate><dc:date>2008-07-24T05:24:44Z</dc:date><dc:language>zh-CN</dc:language><dc:rights>Copyright &amp;amp;copy; 2006-2009 KnitDream.com All Rights Reserved.    蜀ICP备07000529号&amp;amp;nbsp;           _uacct = &amp;quot;UA-1503972-1&amp;quot;;urchinTracker();</dc:rights><item><title>CSS新手阅读的CSS技巧十则</title><link>http://item.feedsky.com/~feedsky/knitdream/~7010406/97189444/5118421/1/item.html</link><wfw:comment>http://www.knitdream.com/</wfw:comment><wfw:commentRss>http://www.knitdream.com/feed.asp?cmt=98</wfw:commentRss><trackback:ping>http://www.knitdream.com/cmd.asp?act=tb&amp;id=98&amp;key=b1a5cac5</trackback:ping><description>&lt;p&gt;这十则CSS技巧汇编于网络，作为老手已经司空见惯了，也没有什么新意，但温故而知新，或许阅读一遍也有一定的启发，本文主要面对CSS新手朋友，有一些东西或许不是搞的很明白。而这十则CSS技巧能促进你的学习与编码技巧，希望大家能认真阅读。&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;一、CSS字体属性简写规则&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;　　一般用CSS设定字体属性方法：&lt;br /&gt;　　font-weight:bold;&lt;br /&gt;　　font-style:italic;&lt;br /&gt;　　font-varient:small-caps;&lt;br /&gt;　　font-size:1em;&lt;br /&gt;　　line-height:1.5em;&lt;br /&gt;　　font-family:verdana,sans-serif;&lt;br /&gt;　　可以把它们全部写到一行上去：&lt;br /&gt;　　&lt;strong&gt;font:&amp;nbsp;bold&amp;nbsp;italic&amp;nbsp;small-caps&amp;nbsp;1em/1.5em&amp;nbsp;verdana,sans-serif;&lt;/strong&gt;&lt;br /&gt;　　这样看起来是不是简单多了，只有一点要提醒的：这种简写方法只有在同时指定font-size和font-family属性时才起作用。而且，如果你没有设定font-weight,&amp;nbsp;font-style,&amp;nbsp;以及font-varient，他们会使用缺省值，这点要记上。&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;二、CSS&amp;nbsp;border的缺省值&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;　　通常可以设定边界的颜色，宽度和风格，如：&lt;br /&gt;　　border:&amp;nbsp;3px&amp;nbsp;solid&amp;nbsp;#000;&lt;br /&gt;　　这位把边界显示成3像素宽，黑色，实线。但实际上这里只需要指定风格即可。&lt;br /&gt;　　如果只指定了风格，其他属性就会使用缺省值。一般地，Border的宽度缺省是medium，一般等于3到4个像素；缺省的颜色是其中文字的颜色。如果这个值正好合适的话，就不用设那么多了。&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;三、给元素同时使用两个类&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;　　一般一个元素设定一个类（Class），但这并不意味着不能用两个。事实上，你可以这样：&lt;br /&gt;　　&amp;lt;p&amp;nbsp;class=&amp;rdquo;&lt;strong&gt;text&amp;nbsp;side&lt;/strong&gt;&amp;rdquo;&amp;gt;&amp;hellip;&amp;lt;/p&amp;gt;&lt;br /&gt;　　同时给P元素两个类，中间用空格格开，这样所有text和side两个类的属性都会加到P元素上来。如果它们两个类中的属性有冲突的话，后设置的起作用，即在CSS文件中放在后面的类的属性起作用。&lt;br /&gt;　　补充：对于一个ID，不能这样写&amp;lt;p&amp;nbsp;id=&amp;rdquo;text&amp;nbsp;side&amp;rdquo;&amp;gt;&amp;hellip;&amp;lt;/p&amp;gt;也不能这样写&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;四、CSS用于文档打印&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;　　许多网站上都有一个针对打印的版本，但实际上这并不需要，因为可以用CSS来设定打印风格。&lt;br /&gt;也就是说，可以为页面指定两个CSS文件，一个用于屏幕显示，一个用于打印：&lt;br /&gt;　　&amp;lt;link&amp;nbsp;type=&amp;rdquo;text/css&amp;rdquo;&amp;nbsp;rel=&amp;rdquo;stylesheet&amp;rdquo;&amp;nbsp;href=&amp;rdquo;stylesheet.css&amp;rdquo;&amp;nbsp;media=&amp;rdquo;screen&amp;rdquo;&amp;nbsp;/&amp;gt;&lt;br /&gt;　　&amp;lt;link&amp;nbsp;type=&amp;rdquo;text/css&amp;rdquo;&amp;nbsp;rel=&amp;rdquo;stylesheet&amp;rdquo;&amp;nbsp;href=&amp;rdquo;printstyle.css&amp;rdquo;&amp;nbsp;&lt;strong&gt;media=&amp;rdquo;print&amp;rdquo;&lt;/strong&gt;&amp;nbsp;/&amp;gt;&lt;br /&gt;　　第1行就是显示，第2行是打印，注意其中的media属性。&lt;br /&gt;　　但应该在打印CSS中写什么东西呢？你可以按设计普通CSS的方法来设定它。设计的同时就可以把这个CSS设成显示CSS来检查它的效果。也许你会使用display:&amp;nbsp;none&amp;nbsp;这个命令来关掉一些装饰图片，再关掉一些导航按钮等。&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;五、CSS图片替换技巧&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;　　一般都建议用标准的HTML来显示文字，而不要使用图片，这样不但快，也更具可读性。但如果你想用一些特殊字体时，就只能用图片了。&lt;br /&gt;　　比如你想整个卖东西的图标，你就用了这个图片：&lt;br /&gt;　　&amp;lt;h1&amp;gt;&amp;lt;img&amp;nbsp;src=&amp;rdquo;widget-image.gif&amp;rdquo;&amp;nbsp;alt=&amp;rdquo;Buy&amp;nbsp;widgets&amp;rdquo;&amp;nbsp;/&amp;gt;&amp;lt;/h1&amp;gt;&lt;br /&gt;　　这当然可以，但对搜索引擎来说，和正常文字相比，它们对alt里面的替换文字几乎没有兴趣这是因为许多设计者在这里放许多关键词来骗搜索引擎。所以方法应该是这样的：&lt;br /&gt;　　&lt;strong&gt;&amp;lt;h1&amp;gt;Buy&amp;nbsp;widgets&amp;lt;/h1&amp;gt;&lt;/strong&gt;&lt;br /&gt;　　但这样就没有特殊字体了。要想达到同样效果，可以这样设计CSS：&lt;br /&gt;　　&lt;strong&gt;h1&amp;nbsp;{&amp;nbsp;background:&amp;nbsp;url(widget-image.gif)&amp;nbsp;no-repeat;&amp;nbsp;height:&amp;nbsp;image&amp;nbsp;height&amp;nbsp;text-indent:&amp;nbsp;-2000px&amp;nbsp;}&lt;/strong&gt;&lt;br /&gt;　　注意把image&amp;nbsp;height换成真的图片的高度。这里，图片会当作背景显示出来，而真正的文字由于设定了-2000像素这个缩进，它们会出现在屏幕左边2000点的地方，就看不见了。但这对于关闭图片的人来说，可能全部看不到了，这点要注意。&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;六、CSS&amp;nbsp;box模型的另一种技巧&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;　　这个Box模型的调整主要是针对IE6之前的IE浏览器的，它们把边界宽度和空白都算在元素宽度上。比如：&lt;br /&gt;　　#box&amp;nbsp;{&amp;nbsp;width:&amp;nbsp;100px;&amp;nbsp;border:&amp;nbsp;5px;&amp;nbsp;padding:&amp;nbsp;20px&amp;nbsp;}&lt;br /&gt;　　这样调用它：&lt;br /&gt;　　&amp;lt;div&amp;nbsp;id=&amp;rdquo;box&amp;rdquo;&amp;gt;&amp;hellip;&amp;lt;/div&amp;gt;&lt;br /&gt;　　这时盒子的全宽应该是150点，这在除IE6之前的IE浏览器之外的所有浏览器上都是正确的。但在IE5这样的浏览器上，它的全宽仍是100点。可以用以前人发明的Box调整方法来处理这种差异。&lt;br /&gt;　　但用CSS也可以达到同样的目的，让它们显示效果一致。&lt;br /&gt;　　&lt;strong&gt;#box&amp;nbsp;{&amp;nbsp;width:&amp;nbsp;150px&amp;nbsp;}&lt;/strong&gt;&lt;br /&gt;　　&lt;strong&gt;#box&amp;nbsp;div&amp;nbsp;{&amp;nbsp;border:&amp;nbsp;5px;&amp;nbsp;padding:&amp;nbsp;20px&amp;nbsp;}&lt;/strong&gt;&lt;br /&gt;　　这样调用：&lt;br /&gt;　　&lt;strong&gt;&amp;lt;div&amp;nbsp;id=&amp;rdquo;box&amp;rdquo;&amp;gt;&amp;lt;div&amp;gt;&amp;hellip;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;/strong&gt;&lt;br /&gt;　　这样，不管什么浏览器，宽度都是150点了。&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;七、CSS设置块元素水平居中对齐&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;　　如果想做个固定宽度的网页并且想让网页水平居中的话，通常是这样：&lt;br /&gt;　　#content&amp;nbsp;{&amp;nbsp;width:&amp;nbsp;700px;&amp;nbsp;margin:&amp;nbsp;0&amp;nbsp;auto&amp;nbsp;}&lt;br /&gt;　　你会使用&amp;nbsp;&amp;lt;div&amp;nbsp;id=&amp;rdquo;content&amp;rdquo;&amp;gt;&amp;nbsp;来围上所有元素。这很简单，但不够好，IE6之前版本会显示不出这种效果。改CSS如下：&lt;br /&gt;　　body&amp;nbsp;{&amp;nbsp;text-align:&amp;nbsp;center&amp;nbsp;}&amp;nbsp;#content&amp;nbsp;{&amp;nbsp;text-align:&amp;nbsp;left;&amp;nbsp;width:&amp;nbsp;700px;&amp;nbsp;margin:&amp;nbsp;0&amp;nbsp;auto&amp;nbsp;}&lt;br /&gt;　　这会把网页内容都居中，所以在Content中又加入了:text-align:&amp;nbsp;left&amp;nbsp;。&lt;br /&gt;　　另外DTD不正确也会引起问题，可以参考这篇文章：&lt;br /&gt;　　　&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;八、用CSS来处理垂直对齐&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;　　垂直对齐用表格可以很方便地实现，设定表格单元&amp;nbsp;vertical-align:&amp;nbsp;middle&amp;nbsp;就可以了。但对CSS来说这没用。如果你想设定一个导航条是2em高，而想让导航文字垂直居中的话，设定这个属性是没用的。&lt;br /&gt;　　CSS方法是什么呢？对了，把这些文字的行高设为&amp;nbsp;2em：&lt;strong&gt;line-height:&amp;nbsp;2em&amp;nbsp;&lt;/strong&gt;，这就可以了。&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;九、CSS在容器内的定位&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;　　CSS的一个好处是可以把一个元素任意定位，在一个容器内也可以。比如对这个容器：&lt;br /&gt;　　#container&amp;nbsp;{&amp;nbsp;position:&amp;nbsp;relative&amp;nbsp;}&lt;br /&gt;　　这样容器内所有的元素都会相对定位，可以这样用：&lt;br /&gt;　　&amp;lt;div&amp;nbsp;id=&amp;rdquo;container&amp;rdquo;&amp;gt;&amp;lt;div&amp;nbsp;id=&amp;rdquo;navigation&amp;rdquo;&amp;gt;&amp;hellip;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;　　如果想定位到距左30点，距上5点，可以这样：&lt;br /&gt;　　#navigation&amp;nbsp;{&amp;nbsp;position:&amp;nbsp;absolute;&amp;nbsp;left:&amp;nbsp;30px;&amp;nbsp;top:&amp;nbsp;5px&amp;nbsp;}&lt;br /&gt;　　当然，你还可以这样：&lt;br /&gt;　　margin:&amp;nbsp;5px&amp;nbsp;0&amp;nbsp;0&amp;nbsp;30px&lt;br /&gt;　　注意4个数字的顺序是：上、右、下、左。当然，有时候定位的方法而不是边距的方法更好些。&lt;br /&gt;　　更多的CSS布局与技术，请参考52CSS.com的大量教程。&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;十、直通到屏幕底部的背景色&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;　　在垂直方向是进行控制是CSS所不能的。如果你想让导航栏和内容栏一样直通到页面底部，用表格是很方便的，但如果只用这样的CSS：&lt;br /&gt;　　#navigation&amp;nbsp;{&amp;nbsp;background:&amp;nbsp;blue;&amp;nbsp;width:&amp;nbsp;150px&amp;nbsp;}&lt;br /&gt;　　较短的导航条是不会直通到底部的，半路内容结束时它就结束了。该怎么办呢？&lt;br /&gt;　　不幸的是，只能采用欺骗的手段了，给这较短的一栏加上个背景图，宽度和栏宽一样，并让它的颜色和设定的背景色一样。&lt;br /&gt;　　body&amp;nbsp;{&amp;nbsp;background:&amp;nbsp;url(blue-image.gif)&amp;nbsp;0&amp;nbsp;0&amp;nbsp;repeat-y&amp;nbsp;}&lt;br /&gt;　　此时不能用em做单位，因为那样的话，一旦读者改变了字体大小，这个花招就会露馅，只能使用px。&lt;/p&gt;&lt;p&gt; Copyright © 2008&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.knitdream.com/Post/98.Shtml&quot; target=&quot;_blank&quot;&gt;继续阅读...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;分类: &lt;a href=&quot;http://www.knitdream.com/Post/Web.Shtml&quot;&gt;设计开发&lt;/a&gt; | Tags: &lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=Dreamweaver&quot;&gt;Dreamweaver&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=HTML&quot;&gt;HTML&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=Ajax&quot;&gt;Ajax&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=CSS&quot;&gt;CSS&lt;/a&gt;&amp;nbsp;&amp;nbsp; | &lt;a href=&quot;http://www.knitdream.com/Post/98.Shtml#comment&quot; target=&quot;_blank&quot;&gt;添加评论&lt;/a&gt;(0)&lt;/p&gt;&lt;h3&gt;相关文章:&lt;/h3&gt;&lt;ul&gt;&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/95.Shtml&quot;  title=&quot;216种Web安全颜色，Web安全颜色是什么？&quot;&gt;216种Web安全颜色，Web安全颜色是什么？&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-16 14:55:32)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/94.Shtml&quot;  title=&quot;70个流行的AJAX应用的演示和源码下载&quot;&gt;70个流行的AJAX应用的演示和源码下载&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-15 22:2:46)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/90.Shtml&quot;  title=&quot;8个简单实用的CSS秘诀 &quot;&gt;8个简单实用的CSS秘诀 &lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-13 19:23:52)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/89.Shtml&quot;  title=&quot;Generic Malware Debunking Post&quot;&gt;Generic Malware Debunking Post&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-13 19:13:41)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/42.Shtml&quot;  title=&quot;关于DOCTYPE 使用&quot;&gt;关于DOCTYPE 使用&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-4-19 13:8:30)&lt;/p&gt;


&lt;/ul&gt;&lt;br /&gt;&lt;!-- Feedsky flare --&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=2aaa7568a65f34271af884c5844591b9&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=2aaa7568a65f34271af884c5844591b9&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=953db44a79a1f2a6de748311bcf8d0af&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=953db44a79a1f2a6de748311bcf8d0af&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=638e2be848b4a4228265dd72630aa17c&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=638e2be848b4a4228265dd72630aa17c&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=e677c2033d967b1a436d083504c8deb6&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=e677c2033d967b1a436d083504c8deb6&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=5329746f58f4cbeec5199edb3fc5dc55&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=5329746f58f4cbeec5199edb3fc5dc55&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=d6825cfd39be3f608534e71aae98f903&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=d6825cfd39be3f608534e71aae98f903&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=9c060b28b736960063b29c2f23cfc5b3&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=9c060b28b736960063b29c2f23cfc5b3&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;!-- /Feedsky flare --&gt;</description><category>设计开发</category><pubDate>Thu, 24 Jul 2008 13:14:01 +0800</pubDate><author>Sctercn@Gmail.com (admin)</author><comments>http://www.knitdream.com/Post/98.Shtml#comment</comments><guid isPermaLink="false">http://www.knitdream.com/Post/98.Shtml</guid><dc:creator>Sctercn@Gmail.com (admin)</dc:creator><fs:srclink>http://www.knitdream.com/Post/98.Shtml</fs:srclink><fs:srcfeed>http://www.knitdream.com/feed.asp</fs:srcfeed><fs:itemid>feedsky/knitdream/~7010406/97189444/5118421</fs:itemid></item><item><title>Google改进后的Flash索引</title><link>http://item.feedsky.com/~feedsky/knitdream/~7010406/95254318/5118421/1/item.html</link><wfw:comment>http://www.knitdream.com/</wfw:comment><wfw:commentRss>http://www.knitdream.com/feed.asp?cmt=97</wfw:commentRss><trackback:ping>http://www.knitdream.com/cmd.asp?act=tb&amp;id=97&amp;key=91d921b4</trackback:ping><description>&lt;p&gt;我们收到过许多期望我们改进对Adobe Flash文件索引问题的建议。今天，索引团队的软件工程师 Ron Adler 和Janis Stipins，将就我们最近在Flash文件索引编制上取得的改进与大家进行更深入的探讨和交流。&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;问：&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;目前哪些&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Flash文件能更好地被谷歌索引到呢？&lt;/span&gt;&lt;br /&gt;我们改善了对所有类型SWF文件中的文字内容的索引能力，其中包括像按钮或菜单这样的Flash&amp;ldquo;小工具&amp;rdquo;，独立自成一体的 Flash 网站，以及所有介于两者之间的Flash形式。&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;br /&gt;&lt;br /&gt;问：这些&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Flash&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;文件中的哪些内容能被谷歌更好地索引呢？&lt;/span&gt;&lt;br /&gt;用户在与您的Flash文件互动过程中所看到的一切文本内容都将得到更好地索引。如果您的网站包含Flash，其中的文字内容会被Google用来生成您网站的摘要。同时，出现在Flash文件中的文字可以用来匹配用户在Google搜索框中输入的搜索查询。&lt;br /&gt;&lt;br /&gt;除了索引Flash文件中的文本内容，我们现在也能够识别在Flash文件中的出现的URL，并且把这些链接纳入搜索引擎机器人爬行的目标队列中，就像对待那些非Flash网页中出现的URL一样。例如，如果您的Flash 应用程序中包含指向您网站内部页面的链接，Google现在能够更好地发现并抓取您的网站。&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;br /&gt;&lt;br /&gt;问：那么&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Flash&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;文件中包含的非文本内容呢，比如图片？&lt;/span&gt;&lt;br /&gt;目前，我们只能识别和索引Flash文件中的文本内容。如果您的Flash文件里只有图片，我们将不能识别和索引出现在这些图片中的任何文字。类似地，如果一个Flash按钮没有任何附属的文字的话，我们将无法对这类指向特定链接的Flash按钮生成任何錨文本。&lt;br /&gt;&lt;br /&gt;还应注意到的是，我们无法索引 FLV 文件，比如在 YouTube 上播放的视频，因为这些文件没有包含任何文字元素。&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;br /&gt;&lt;br /&gt;问：&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt; Google&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;是怎样识别&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Flash&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;文件里的内容呢？&lt;/span&gt;&lt;br /&gt;我们开发出了一种算法，这种算法可以使Google机器人能够模仿人类通过点击按钮、输入内容等方式来了解Flash文件。我们的算法能够记住沿途它遇到的所有文字内容，其后这些内容都能被索引到。我们无法告诉您更多的保密细节，但是我们可以告诉您，通过使用Adobe的新型可检索性SWF数据库，这种算法的有效性得到了进一步提高。&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;br /&gt;&lt;br /&gt;问：我怎样做才能使&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Google&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;索引到我的&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Flash&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;文件中出现的文本呢？&lt;/span&gt;&lt;br /&gt;基本上，您不需要做任何事情。我们已经取得的技术改进，使这项功能的实现，无需网页设计者或网站管理员做任何特别的操作。如果您的网站上有Flash内容，我们会在现有技术能力的基础上，尽最大能力对它们自动进行索引（详见接下来的问题）。&lt;br /&gt;&lt;br /&gt;也就是说，您应该了解 Google现在已经可以识别那些展现在您网站访问者面前的文字信息。如果你希望 Google忽略一些次要内容，如&amp;quot;版权&amp;quot;或&amp;quot;加载&amp;quot;等信息，您可以考虑把那些文本替换为图片，这样它们就不会被我们抓取到了。&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;br /&gt;&lt;br /&gt;问：在索引&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Flash&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;文件上，&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Google&lt;/span&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;遇到的主要技术难题是什么？&lt;/span&gt;&lt;br /&gt;目前的问题主要体现在三个方面，这也正是我们在努力解决的：&lt;br /&gt;&lt;br /&gt;1、Googlebot不能执行某些类型的JavaScript程序。因此，如果您的网页通过JavaScript加载Flash文件的话，Google可能无法识别该Flash文件，在这种情况下，它将不会被索引到。&lt;br /&gt;2、目前，我们还无法把那些通过您的Flash文件加载的外来内容和您的Flash文件整合起来。也就是说，如果您的Flash文件加载了一个HTML文件，或一个XML文件，或另一个SWF文件等等，Google将分别索引这些资源，但是它们将不会被认为是您Flash文件内容的一部分。&lt;br /&gt;3、虽然我们能够索引在网络上出现的几乎所有语种的Flash，但在识别用双向语言书写的Flash内容还有一定困难。在这个问题解决之前，我们将无法识别和索引Flash文件中的希伯来文或阿拉伯文的内容。&lt;br /&gt;&lt;br /&gt;但是，在这些问题上我们也已经取得了相当的进展，所以，敬请期待我们进一步的改进！&lt;br /&gt;&lt;br /&gt;附：&lt;br /&gt;&amp;nbsp;&lt;/p&gt;&lt;div&gt;改进之前搜索结果中的Flash网站&lt;br /&gt;&lt;a href=&quot;http://bp2.blogger.com/_o5Na_9269nA/SHd87oMn_EI/AAAAAAAABW0/nSqaOjRyNAo/s400/deep-impact-first-no-searchbox.png&quot;&gt;&lt;img border=&quot;0&quot; alt=&quot;&quot; src=&quot;http://bp2.blogger.com/_o5Na_9269nA/SHd87oMn_EI/AAAAAAAABW0/nSqaOjRyNAo/s400/deep-impact-first-no-searchbox.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;改进之后搜索结果中的Flash网站, 搜索查询 [nasa deep impact animation]&lt;br /&gt;&lt;a href=&quot;http://bp3.blogger.com/_o5Na_9269nA/SHd74J7SkkI/AAAAAAAABWs/tqwpH8b0UQg/s400/Picture+144.png&quot;&gt;&lt;img border=&quot;0&quot; alt=&quot;&quot; src=&quot;http://bp3.blogger.com/_o5Na_9269nA/SHd74J7SkkI/AAAAAAAABWs/tqwpH8b0UQg/s400/Picture+144.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;p&gt; Copyright © 2008&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.knitdream.com/Post/97.Shtml&quot; target=&quot;_blank&quot;&gt;继续阅读...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;分类: &lt;a href=&quot;http://www.knitdream.com/Post/Seo.Shtml&quot;&gt;SEO&lt;/a&gt; | Tags: &lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=Google&quot;&gt;Google&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=SEO&quot;&gt;SEO&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=%E7%BD%91%E7%AB%99%E6%8E%A8%E5%B9%BF&quot;&gt;网站推广&lt;/a&gt;&amp;nbsp;&amp;nbsp; | &lt;a href=&quot;http://www.knitdream.com/Post/97.Shtml#comment&quot; target=&quot;_blank&quot;&gt;添加评论&lt;/a&gt;(0)&lt;/p&gt;&lt;h3&gt;相关文章:&lt;/h3&gt;&lt;ul&gt;&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/96.Shtml&quot;  title=&quot;Google搜索结果页面点击分配&quot;&gt;Google搜索结果页面点击分配&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-18 19:38:38)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/92.Shtml&quot;  title=&quot;Bodog’s Battle of the Brand&quot;&gt;Bodog’s Battle of the Brand&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-15 15:19:19)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/91.Shtml&quot;  title=&quot;Yahoo Patents Anchor Text Relevance in Search Indexing&quot;&gt;Yahoo Patents Anchor Text Relevance in Search Indexing&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-14 19:30:37)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/88.Shtml&quot;  title=&quot;Content analysis and Sitemap details, plus more languages&quot;&gt;Content analysis and Sitemap details, plus more languages&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-13 10:3:53)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/87.Shtml&quot;  title=&quot;Google Releases Protocol Buffers Into the Wild&quot;&gt;Google Releases Protocol Buffers Into the Wild&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-10 18:57:27)&lt;/p&gt;


&lt;/ul&gt;&lt;br /&gt;&lt;!-- Feedsky flare --&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=96a27310aa169f06a2dea224738dd6e9&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=96a27310aa169f06a2dea224738dd6e9&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=d93bc2f16b683ed31017d27ffade0362&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=d93bc2f16b683ed31017d27ffade0362&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=bfc940ea293745fe66e864c6dd0a3f98&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=bfc940ea293745fe66e864c6dd0a3f98&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=9992292e29f993a2f84a006b09900f00&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=9992292e29f993a2f84a006b09900f00&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=c47ca912ff75a4bd6f9400fbe03d827d&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=c47ca912ff75a4bd6f9400fbe03d827d&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=560619d5ae18e5dac1b2052c35663b5e&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=560619d5ae18e5dac1b2052c35663b5e&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=c79276f7ac15711e2e9ee1a89bbd6d5d&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=c79276f7ac15711e2e9ee1a89bbd6d5d&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;!-- /Feedsky flare --&gt;</description><category>SEO</category><pubDate>Fri, 18 Jul 2008 19:52:42 +0800</pubDate><author>Sctercn@Gmail.com (admin)</author><comments>http://www.knitdream.com/Post/97.Shtml#comment</comments><guid isPermaLink="false">http://www.knitdream.com/Post/97.Shtml</guid><dc:creator>Sctercn@Gmail.com (admin)</dc:creator><fs:srclink>http://www.knitdream.com/Post/97.Shtml</fs:srclink><fs:srcfeed>http://www.knitdream.com/feed.asp</fs:srcfeed><fs:itemid>feedsky/knitdream/~7010406/95254318/5118421</fs:itemid></item><item><title>Google搜索结果页面点击分配</title><link>http://item.feedsky.com/~feedsky/knitdream/~7010406/95254319/5118421/1/item.html</link><wfw:comment>http://www.knitdream.com/</wfw:comment><wfw:commentRss>http://www.knitdream.com/feed.asp?cmt=96</wfw:commentRss><trackback:ping>http://www.knitdream.com/cmd.asp?act=tb&amp;id=96&amp;key=5faf7dc6</trackback:ping><description>&lt;p&gt;07年的时候在搜索引擎研究领域出现一张Google和百度的点击热图（如下），图的出处未知，但是从图中可以看出google和百度用户行为的显著区别，也可以看出在这两个搜索引擎中排名网站的流量分配的大概情况。&lt;br /&gt;&lt;a href=&quot;http://www.gexiaofei.com/wp-content/uploads/2008/05/webretu.gif&quot;&gt;&lt;img border=&quot;0&quot; alt=&quot;&quot; src=&quot;http://www.gexiaofei.com/wp-content/uploads/2008/05/webretu.gif&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Google的用户点击呈现明显的黄金三角，搜索用户流量基本导入首页排名前三的网站，而百度的用户点击则是比较杂乱。这张图曾经被很多&lt;span class=&quot;alinks_links&quot;&gt;SEO&lt;/span&gt;用来强调关键词排名的重要性，尤其是&amp;ldquo;Google排名势必前三甲&amp;rdquo;理论的重要。但是这张图虽然给出一个SERP点击热点概况，却无法从中知道在Google首页的10个结果中不同排名之间的真正点击比例。&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;而在06年，康乃尔大学的学者们进行过一次eye tracking试验，通过试验参与者们使用google的多次搜索查询比较获得了一份相对真实可靠的Google搜索结果页面的用户行为分析。试验结果如下图：&lt;br /&gt;&lt;a href=&quot;http://www.gexiaofei.com/wp-content/uploads/2008/05/click-distribution-serp.jpg&quot;&gt;&lt;img border=&quot;0&quot; alt=&quot;&quot; src=&quot;http://www.gexiaofei.com/wp-content/uploads/2008/05/click-distribution-serp.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;从图中可以看出，Google排名前三位的网站几乎分流了搜索流量的80%，而第一名更是获得了超过半数的搜索流量，第二名和第三名所获得的点击则远远低 于排名第一的网站，前三位点击比例大概是4：1：0.7。第五名网站获得的点击超过第四位（在标准浏览器界面中，Google搜索结果页面第一屏是显示5 个结果，这一结果与第十名点击大于第九名一起表明，首屏最后一个结果获得的注意力是大于倒数第二位的）。排名第七位获得的点击是最少的，原因可能在于用户 在浏览过程中下拉页面到底部，这时候就只显示最后三位排名网站，第七名便被浏览习惯所忽略。调查结果还显示Google搜索结果页面第二页第一位排名的网 站所获得的点击只有首页排名第十网站的40%。&lt;/p&gt;&lt;p&gt;关键词排名一直是被SEO所重视的，而获得SERP首页排名更是最大追求。但是从这份研究结果可以看出，即使网站排名进入首页，所获得的点击流量还 是有很大差异的。所以要追求好的搜索流量，前三甲是势在必得，而第一位排名则更应该是最终目标，毕竟对于一个2万流量的搜索关键词第一名就劫持走了一万 了。&lt;/p&gt;&lt;p&gt;这份06年的调研对于现在做SEO而言依旧是有参考价值的，虽然现在的Google搜索结果页面与当时相比有不少变化，譬如增加了sitelinks以 及搜索结果的多样化，但是对于中文关键词搜索而言，google搜索结果页面的变动还是比较少的。而这个调研结果只具备参考价值的原因在于这次试验所做的 关键词搜索数量有限且参与实验者基本为学生，不能完全代表Google用户群体，而且eye tracking试验本身就是很难做到准确度的。当然Google搜索结果页面的点击分配和流量分配到底怎样，Google自己是了解的，只是估计没有我 们是没有机会知道了。&lt;/p&gt;&lt;p&gt; Copyright © 2008&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.knitdream.com/Post/96.Shtml&quot; target=&quot;_blank&quot;&gt;继续阅读...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;分类: &lt;a href=&quot;http://www.knitdream.com/Post/Seo.Shtml&quot;&gt;SEO&lt;/a&gt; | Tags: &lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=SEO&quot;&gt;SEO&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=Google&quot;&gt;Google&lt;/a&gt;&amp;nbsp;&amp;nbsp; | &lt;a href=&quot;http://www.knitdream.com/Post/96.Shtml#comment&quot; target=&quot;_blank&quot;&gt;添加评论&lt;/a&gt;(0)&lt;/p&gt;&lt;h3&gt;相关文章:&lt;/h3&gt;&lt;ul&gt;&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/97.Shtml&quot;  title=&quot;Google改进后的Flash索引&quot;&gt;Google改进后的Flash索引&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-18 19:52:42)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/92.Shtml&quot;  title=&quot;Bodog’s Battle of the Brand&quot;&gt;Bodog’s Battle of the Brand&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-15 15:19:19)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/91.Shtml&quot;  title=&quot;Yahoo Patents Anchor Text Relevance in Search Indexing&quot;&gt;Yahoo Patents Anchor Text Relevance in Search Indexing&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-14 19:30:37)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/88.Shtml&quot;  title=&quot;Content analysis and Sitemap details, plus more languages&quot;&gt;Content analysis and Sitemap details, plus more languages&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-13 10:3:53)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/87.Shtml&quot;  title=&quot;Google Releases Protocol Buffers Into the Wild&quot;&gt;Google Releases Protocol Buffers Into the Wild&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-10 18:57:27)&lt;/p&gt;


&lt;/ul&gt;&lt;br /&gt;&lt;!-- Feedsky flare --&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=d60c6182e70694430e7008dc67486b2a&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=d60c6182e70694430e7008dc67486b2a&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=8f409073a310a4677271c9dc8dfeb1de&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=8f409073a310a4677271c9dc8dfeb1de&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=f8e1504036a9fac25039f130624a6adb&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=f8e1504036a9fac25039f130624a6adb&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=3522b89635355c75e3183d0c10ee53f5&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=3522b89635355c75e3183d0c10ee53f5&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=fde1fa8e94d78d314312c72c7b644084&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=fde1fa8e94d78d314312c72c7b644084&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=437104b6e8b8306605d608ca332ab935&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=437104b6e8b8306605d608ca332ab935&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=414033c0a2c8a148941e318c072e6dd1&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=414033c0a2c8a148941e318c072e6dd1&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;!-- /Feedsky flare --&gt;</description><category>SEO</category><pubDate>Fri, 18 Jul 2008 19:38:38 +0800</pubDate><author>Sctercn@Gmail.com (admin)</author><comments>http://www.knitdream.com/Post/96.Shtml#comment</comments><guid isPermaLink="false">http://www.knitdream.com/Post/96.Shtml</guid><dc:creator>Sctercn@Gmail.com (admin)</dc:creator><fs:srclink>http://www.knitdream.com/Post/96.Shtml</fs:srclink><fs:srcfeed>http://www.knitdream.com/feed.asp</fs:srcfeed><fs:itemid>feedsky/knitdream/~7010406/95254319/5118421</fs:itemid></item><item><title>216种Web安全颜色，Web安全颜色是什么？</title><link>http://item.feedsky.com/~feedsky/knitdream/~7010406/94535090/5118421/1/item.html</link><wfw:comment>http://www.knitdream.com/</wfw:comment><wfw:commentRss>http://www.knitdream.com/feed.asp?cmt=95</wfw:commentRss><trackback:ping>http://www.knitdream.com/cmd.asp?act=tb&amp;id=95&amp;key=ae27ffee</trackback:ping><description>&lt;p&gt;Web 安全颜色是浏览器使用的 216 种颜色，与平台无关。在 8 位屏幕上显示颜色时，浏览器将图像中的所有颜色更改成这些颜色。216 种颜色是 Mac OS 的 8 位调色板的子集。通过只使用这些颜色，您为用于 Web 而制作的图片在设置为以 256 色显示的系统上就一定不会出现仿色。  在 Adobe 拾色器中识别 Web 安全颜色：        点按拾色器左下角的&amp;ldquo;只有 Web 颜色&amp;rdquo;选项，然后选取拾色器中的任何颜色。选中此选项后，所拾取的任何颜色都是 Web 安全颜色。  将非 Web 颜色更改为 Web 安全颜色：        如果选择非 Web 颜色，则 Adobe 拾色器中的颜色矩形旁边会显示一个警告立方体 &amp;ldquo;颜色不是 Web 安全色&amp;rdquo;图标。点按警告立方体选择最接近的 Web 颜色。（如果未出现警告立方体，则所选的颜色是 Web 安全颜色。）  使用&amp;ldquo;颜色&amp;rdquo;调板选择 Web 安全颜色：     1. 点按&amp;ldquo;颜色&amp;rdquo;调板选项卡，或选取&amp;ldquo;窗口&amp;rdquo;&amp;gt;&amp;ldquo;颜色&amp;rdquo;，查看&amp;ldquo;颜色&amp;rdquo;调板。    2. 选取选择 Web 安全颜色的选项：           * 从&amp;ldquo;颜色&amp;rdquo;调板菜单中选取&amp;ldquo;保证四色曲线图 Web 安全&amp;rdquo;。选中该选项后，在&amp;ldquo;颜色&amp;rdquo;调板中选取的任何颜色都是 Web 安全颜色           * 从&amp;ldquo;颜色&amp;rdquo;调板菜单中选取&amp;ldquo;Web 颜色滑块&amp;rdquo;(Photoshop)，或从&amp;ldquo;颜色&amp;rdquo;调板菜单中选取任一&amp;ldquo;滑块&amp;rdquo;选项 (ImageReady)。默认情况下，在拖移&amp;ldquo;Web 颜色滑块&amp;rdquo;时，Web 颜色滑块紧贴着 Web 安全颜色（由勾号指示）。（如果要覆盖 Web 安全颜色选区，请在拖移滑块时按住 Alt 键 (Windows) 或 Option 键 (Mac OS)。）        如果选取非 Web 颜色，&amp;ldquo;颜色&amp;rdquo;调板左侧的四色曲线图上方会出现一个警告立方体 &amp;ldquo;颜色不是 Web 安全色&amp;rdquo;图标。点按警告立方体选择最接近的 Web 颜色。        在 ImageReady 中，在警告图标周围拖移以选择其他接近的 Web 颜色。（如果未出现警告立方体，则所选的颜色是 Web 安全颜色。）        注释：在 Photoshop 中，必须从&amp;ldquo;颜色&amp;rdquo;调板菜单中选取&amp;ldquo;Web 颜色滑块&amp;rdquo;，才能查看 Web 安全警告立方体。在 ImageReady 中，用任何颜色滑块选项都能查看警告立方体。&lt;/p&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; bgcolor=&quot;#ffffff&quot; align=&quot;center&quot; style=&quot;color: rgb(0, 0, 0);&quot;&gt;    &lt;tbody&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 0, 0); text-align: center;&quot;&gt;#000000&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 0, 51); text-align: center;&quot;&gt;#000033&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 0, 102); text-align: center;&quot;&gt;#000066&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 0, 153); text-align: center;&quot;&gt;#000099&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 0, 204); text-align: center;&quot;&gt;#0000CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 0, 255); text-align: center;&quot;&gt;#0000FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 51, 0); text-align: center;&quot;&gt;#003300&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 51, 51); text-align: center;&quot;&gt;#003333&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 51, 102); text-align: center;&quot;&gt;#003366&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 51, 153); text-align: center;&quot;&gt;#003399&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 51, 204); text-align: center;&quot;&gt;#0033CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 51, 255); text-align: center;&quot;&gt;#0033FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 102, 0); text-align: center;&quot;&gt;#006600&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 102, 51); text-align: center;&quot;&gt;#006633&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 102, 102); text-align: center;&quot;&gt;#006666&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 102, 153); text-align: center;&quot;&gt;#006699&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 102, 204); text-align: center;&quot;&gt;#0066CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(0, 102, 255); text-align: center;&quot;&gt;#0066FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 153, 0); text-align: center;&quot;&gt;#009900&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 153, 51); text-align: center;&quot;&gt;#009933&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 153, 102); text-align: center;&quot;&gt;#009966&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 153, 153); text-align: center;&quot;&gt;#009999&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 153, 204); text-align: center;&quot;&gt;#0099CC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 153, 255); text-align: center;&quot;&gt;#0099FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 204, 0); text-align: center;&quot;&gt;#00CC00&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 204, 51); text-align: center;&quot;&gt;#00CC33&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 204, 102); text-align: center;&quot;&gt;#00CC66&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 204, 153); text-align: center;&quot;&gt;#00CC99&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 204, 204); text-align: center;&quot;&gt;#00CCCC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 204, 255); text-align: center;&quot;&gt;#00CCFF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 255, 0); text-align: center;&quot;&gt;#00FF00&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 255, 51); text-align: center;&quot;&gt;#00FF33&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 255, 102); text-align: center;&quot;&gt;#00FF66&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 255, 153); text-align: center;&quot;&gt;#00FF99&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 255, 204); text-align: center;&quot;&gt;#00FFCC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(0, 255, 255); text-align: center;&quot;&gt;#00FFFF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 0, 0); text-align: center;&quot;&gt;#330000&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 0, 51); text-align: center;&quot;&gt;#330033&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 0, 102); text-align: center;&quot;&gt;#330066&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 0, 153); text-align: center;&quot;&gt;#330099&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 0, 204); text-align: center;&quot;&gt;#3300CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 0, 255); text-align: center;&quot;&gt;#3300FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 51, 0); text-align: center;&quot;&gt;#333300&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 51, 51); text-align: center;&quot;&gt;#333333&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 51, 102); text-align: center;&quot;&gt;#333366&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 51, 153); text-align: center;&quot;&gt;#333399&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 51, 204); text-align: center;&quot;&gt;#3333CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 51, 255); text-align: center;&quot;&gt;#3333FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 102, 0); text-align: center;&quot;&gt;#336600&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 102, 51); text-align: center;&quot;&gt;#336633&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 102, 102); text-align: center;&quot;&gt;#336666&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 102, 153); text-align: center;&quot;&gt;#336699&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 102, 204); text-align: center;&quot;&gt;#3366CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(51, 102, 255); text-align: center;&quot;&gt;#3366FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 153, 0); text-align: center;&quot;&gt;#339900&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 153, 51); text-align: center;&quot;&gt;#339933&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 153, 102); text-align: center;&quot;&gt;#339966&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 153, 153); text-align: center;&quot;&gt;#339999&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 153, 204); text-align: center;&quot;&gt;#3399CC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 153, 255); text-align: center;&quot;&gt;#3399FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 204, 0); text-align: center;&quot;&gt;#33CC00&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 204, 51); text-align: center;&quot;&gt;#33CC33&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 204, 102); text-align: center;&quot;&gt;#33CC66&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 204, 153); text-align: center;&quot;&gt;#33CC99&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 204, 204); text-align: center;&quot;&gt;#33CCCC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 204, 255); text-align: center;&quot;&gt;#33CCFF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 255, 0); text-align: center;&quot;&gt;#33FF00&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 255, 51); text-align: center;&quot;&gt;#33FF33&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 255, 102); text-align: center;&quot;&gt;#33FF66&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 255, 153); text-align: center;&quot;&gt;#33FF99&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 255, 204); text-align: center;&quot;&gt;#33FFCC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(51, 255, 255); text-align: center;&quot;&gt;#33FFFF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 0, 0); text-align: center;&quot;&gt;#660000&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 0, 51); text-align: center;&quot;&gt;#660033&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 0, 102); text-align: center;&quot;&gt;#660066&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 0, 153); text-align: center;&quot;&gt;#660099&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 0, 204); text-align: center;&quot;&gt;#6600CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 0, 255); text-align: center;&quot;&gt;#6600FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 51, 0); text-align: center;&quot;&gt;#663300&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 51, 51); text-align: center;&quot;&gt;#663333&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 51, 102); text-align: center;&quot;&gt;#663366&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 51, 153); text-align: center;&quot;&gt;#663399&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 51, 204); text-align: center;&quot;&gt;#6633CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 51, 255); text-align: center;&quot;&gt;#6633FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 102, 0); text-align: center;&quot;&gt;#666600&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 102, 51); text-align: center;&quot;&gt;#666633&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 102, 102); text-align: center;&quot;&gt;#666666&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 102, 153); text-align: center;&quot;&gt;#666699&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 102, 204); text-align: center;&quot;&gt;#6666CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(102, 102, 255); text-align: center;&quot;&gt;#6666FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 153, 0); text-align: center;&quot;&gt;#669900&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 153, 51); text-align: center;&quot;&gt;#669933&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 153, 102); text-align: center;&quot;&gt;#669966&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 153, 153); text-align: center;&quot;&gt;#669999&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 153, 204); text-align: center;&quot;&gt;#6699CC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 153, 255); text-align: center;&quot;&gt;#6699FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 204, 0); text-align: center;&quot;&gt;#66CC00&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 204, 51); text-align: center;&quot;&gt;#66CC33&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 204, 102); text-align: center;&quot;&gt;#66CC66&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 204, 153); text-align: center;&quot;&gt;#66CC99&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 204, 204); text-align: center;&quot;&gt;#66CCCC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 204, 255); text-align: center;&quot;&gt;#66CCFF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 255, 0); text-align: center;&quot;&gt;#66FF00&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 255, 51); text-align: center;&quot;&gt;#66FF33&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 255, 102); text-align: center;&quot;&gt;#66FF66&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 255, 153); text-align: center;&quot;&gt;#66FF99&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 255, 204); text-align: center;&quot;&gt;#66FFCC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(102, 255, 255); text-align: center;&quot;&gt;#66FFFF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 0, 0); text-align: center;&quot;&gt;#990000&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 0, 51); text-align: center;&quot;&gt;#990033&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 0, 102); text-align: center;&quot;&gt;#990066&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 0, 153); text-align: center;&quot;&gt;#990099&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 0, 204); text-align: center;&quot;&gt;#9900CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 0, 255); text-align: center;&quot;&gt;#9900FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 51, 0); text-align: center;&quot;&gt;#993300&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 51, 51); text-align: center;&quot;&gt;#993333&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 51, 102); text-align: center;&quot;&gt;#993366&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 51, 153); text-align: center;&quot;&gt;#993399&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 51, 204); text-align: center;&quot;&gt;#9933CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 51, 255); text-align: center;&quot;&gt;#9933FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 102, 0); text-align: center;&quot;&gt;#996600&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 102, 51); text-align: center;&quot;&gt;#996633&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 102, 102); text-align: center;&quot;&gt;#996666&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 102, 153); text-align: center;&quot;&gt;#996699&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 102, 204); text-align: center;&quot;&gt;#9966CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(153, 102, 255); text-align: center;&quot;&gt;#9966FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 153, 0); text-align: center;&quot;&gt;#999900&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 153, 51); text-align: center;&quot;&gt;#999933&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 153, 102); text-align: center;&quot;&gt;#999966&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 153, 153); text-align: center;&quot;&gt;#999999&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 153, 204); text-align: center;&quot;&gt;#9999CC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 153, 255); text-align: center;&quot;&gt;#9999FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 204, 0); text-align: center;&quot;&gt;#99CC00&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 204, 51); text-align: center;&quot;&gt;#99CC33&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 204, 102); text-align: center;&quot;&gt;#99CC66&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 204, 153); text-align: center;&quot;&gt;#99CC99&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 204, 204); text-align: center;&quot;&gt;#99CCCC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 204, 255); text-align: center;&quot;&gt;#99CCFF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 255, 0); text-align: center;&quot;&gt;#99FF00&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 255, 51); text-align: center;&quot;&gt;#99FF33&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 255, 102); text-align: center;&quot;&gt;#99FF66&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 255, 153); text-align: center;&quot;&gt;#99FF99&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 255, 204); text-align: center;&quot;&gt;#99FFCC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(153, 255, 255); text-align: center;&quot;&gt;#99FFFF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 0, 0); text-align: center;&quot;&gt;#CC0000&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 0, 51); text-align: center;&quot;&gt;#CC0033&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 0, 102); text-align: center;&quot;&gt;#CC0066&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 0, 153); text-align: center;&quot;&gt;#CC0099&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 0, 204); text-align: center;&quot;&gt;#CC00CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 0, 255); text-align: center;&quot;&gt;#CC00FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 51, 0); text-align: center;&quot;&gt;#CC3300&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 51, 51); text-align: center;&quot;&gt;#CC3333&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 51, 102); text-align: center;&quot;&gt;#CC3366&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 51, 153); text-align: center;&quot;&gt;#CC3399&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 51, 204); text-align: center;&quot;&gt;#CC33CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 51, 255); text-align: center;&quot;&gt;#CC33FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 102, 0); text-align: center;&quot;&gt;#CC6600&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 102, 51); text-align: center;&quot;&gt;#CC6633&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 102, 102); text-align: center;&quot;&gt;#CC6666&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 102, 153); text-align: center;&quot;&gt;#CC6699&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 102, 204); text-align: center;&quot;&gt;#CC66CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(204, 102, 255); text-align: center;&quot;&gt;#CC66FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 153, 0); text-align: center;&quot;&gt;#CC9900&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 153, 51); text-align: center;&quot;&gt;#CC9933&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 153, 102); text-align: center;&quot;&gt;#CC9966&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 153, 153); text-align: center;&quot;&gt;#CC9999&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 153, 204); text-align: center;&quot;&gt;#CC99CC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 153, 255); text-align: center;&quot;&gt;#CC99FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 204, 0); text-align: center;&quot;&gt;#CCCC00&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 204, 51); text-align: center;&quot;&gt;#CCCC33&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 204, 102); text-align: center;&quot;&gt;#CCCC66&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 204, 153); text-align: center;&quot;&gt;#CCCC99&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 204, 204); text-align: center;&quot;&gt;#CCCCCC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 204, 255); text-align: center;&quot;&gt;#CCCCFF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 255, 0); text-align: center;&quot;&gt;#CCFF00&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 255, 51); text-align: center;&quot;&gt;#CCFF33&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 255, 102); text-align: center;&quot;&gt;#CCFF66&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 255, 153); text-align: center;&quot;&gt;#CCFF99&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 255, 204); text-align: center;&quot;&gt;#CCFFCC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(204, 255, 255); text-align: center;&quot;&gt;#CCFFFF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 0, 0); text-align: center;&quot;&gt;#FF0000&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 0, 51); text-align: center;&quot;&gt;#FF0033&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 0, 102); text-align: center;&quot;&gt;#FF0066&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 0, 153); text-align: center;&quot;&gt;#FF0099&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 0, 204); text-align: center;&quot;&gt;#FF00CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 0, 255); text-align: center;&quot;&gt;#FF00FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 51, 0); text-align: center;&quot;&gt;#FF3300&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 51, 51); text-align: center;&quot;&gt;#FF3333&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 51, 102); text-align: center;&quot;&gt;#FF3366&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 51, 153); text-align: center;&quot;&gt;#FF3399&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 51, 204); text-align: center;&quot;&gt;#FF33CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 51, 255); text-align: center;&quot;&gt;#FF33FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 102, 0); text-align: center;&quot;&gt;#FF6600&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 102, 51); text-align: center;&quot;&gt;#FF6633&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 102, 102); text-align: center;&quot;&gt;#FF6666&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 102, 153); text-align: center;&quot;&gt;#FF6699&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 102, 204); text-align: center;&quot;&gt;#FF66CC&lt;/td&gt;            &lt;td style=&quot;color: rgb(255, 255, 255); height: 35px; background-color: rgb(255, 102, 255); text-align: center;&quot;&gt;#FF66FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 153, 0); text-align: center;&quot;&gt;#FF9900&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 153, 51); text-align: center;&quot;&gt;#FF9933&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 153, 102); text-align: center;&quot;&gt;#FF9966&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 153, 153); text-align: center;&quot;&gt;#FF9999&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 153, 204); text-align: center;&quot;&gt;#FF99CC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 153, 255); text-align: center;&quot;&gt;#FF99FF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 204, 0); text-align: center;&quot;&gt;#FFCC00&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 204, 51); text-align: center;&quot;&gt;#FFCC33&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 204, 102); text-align: center;&quot;&gt;#FFCC66&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 204, 153); text-align: center;&quot;&gt;#FFCC99&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 204, 204); text-align: center;&quot;&gt;#FFCCCC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 204, 255); text-align: center;&quot;&gt;#FFCCFF&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 255, 0); text-align: center;&quot;&gt;#FFFF00&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 255, 51); text-align: center;&quot;&gt;#FFFF33&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 255, 102); text-align: center;&quot;&gt;#FFFF66&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 255, 153); text-align: center;&quot;&gt;#FFFF99&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 255, 204); text-align: center;&quot;&gt;#FFFFCC&lt;/td&gt;            &lt;td style=&quot;height: 35px; background-color: rgb(255, 255, 255); text-align: center;&quot;&gt;#FFFFFF&lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;p&gt; Copyright © 2008&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.knitdream.com/Post/95.Shtml&quot; target=&quot;_blank&quot;&gt;继续阅读...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;分类: &lt;a href=&quot;http://www.knitdream.com/Post/Web.Shtml&quot;&gt;设计开发&lt;/a&gt; | Tags: &lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=HTML&quot;&gt;HTML&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=CSS&quot;&gt;CSS&lt;/a&gt;&amp;nbsp;&amp;nbsp; | &lt;a href=&quot;http://www.knitdream.com/Post/95.Shtml#comment&quot; target=&quot;_blank&quot;&gt;添加评论&lt;/a&gt;(0)&lt;/p&gt;&lt;h3&gt;相关文章:&lt;/h3&gt;&lt;ul&gt;&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/98.Shtml&quot;  title=&quot;CSS新手阅读的CSS技巧十则&quot;&gt;CSS新手阅读的CSS技巧十则&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-24 13:14:1)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/90.Shtml&quot;  title=&quot;8个简单实用的CSS秘诀 &quot;&gt;8个简单实用的CSS秘诀 &lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-13 19:23:52)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/89.Shtml&quot;  title=&quot;Generic Malware Debunking Post&quot;&gt;Generic Malware Debunking Post&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-13 19:13:41)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/42.Shtml&quot;  title=&quot;关于DOCTYPE 使用&quot;&gt;关于DOCTYPE 使用&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-4-19 13:8:30)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/41.Shtml&quot;  title=&quot;Meta标签的强大功效之Meta标签详解&quot;&gt;Meta标签的强大功效之Meta标签详解&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-4-19 12:58:45)&lt;/p&gt;


&lt;/ul&gt;&lt;br /&gt;&lt;!-- Feedsky flare --&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=3cf3b93dd57cbc2e24be03d2278309cd&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=3cf3b93dd57cbc2e24be03d2278309cd&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=2d75ac97162aedc8385261fa22418ade&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=2d75ac97162aedc8385261fa22418ade&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=bdfc59376f6c778ae48858990459cc5c&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=bdfc59376f6c778ae48858990459cc5c&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=2d94916fe0ddb260a808a8cd646767e4&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=2d94916fe0ddb260a808a8cd646767e4&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=1c45e525fec70711a8c1b9c2a06437c0&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=1c45e525fec70711a8c1b9c2a06437c0&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=fe04e8984f2b739bd01ad5498fa693c4&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=fe04e8984f2b739bd01ad5498fa693c4&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=efb6c9e5c49c34fe4d3218e29d14f72a&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=efb6c9e5c49c34fe4d3218e29d14f72a&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;!-- /Feedsky flare --&gt;</description><category>设计开发</category><pubDate>Wed, 16 Jul 2008 14:55:32 +0800</pubDate><author>Sctercn@Gmail.com (admin)</author><comments>http://www.knitdream.com/Post/95.Shtml#comment</comments><guid isPermaLink="false">http://www.knitdream.com/Post/95.Shtml</guid><dc:creator>Sctercn@Gmail.com (admin)</dc:creator><fs:srclink>http://www.knitdream.com/Post/95.Shtml</fs:srclink><fs:srcfeed>http://www.knitdream.com/feed.asp</fs:srcfeed><fs:itemid>feedsky/knitdream/~7010406/94535090/5118421</fs:itemid></item><item><title>70个流行的AJAX应用的演示和源码下载</title><link>http://item.feedsky.com/~feedsky/knitdream/~7010406/94535091/5118421/1/item.html</link><wfw:comment>http://www.knitdream.com/</wfw:comment><wfw:commentRss>http://www.knitdream.com/feed.asp?cmt=94</wfw:commentRss><trackback:ping>http://www.knitdream.com/cmd.asp?act=tb&amp;id=94&amp;key=d35869b2</trackback:ping><description>&lt;ol&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://forge.novell.com/modules/xfmod/project/?ajallerix&quot;&gt;Ajallerix&lt;/a&gt; : AJAX, simple, fast Web image gallery demo ; at Novell&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.stratulat.com/technical/ajax/a1/?article=AJAX%20-%20microlink%20pattern%20&quot;&gt;AJAX - microlink pattern tutorial&lt;/a&gt; : A microlink is a link that opens up content below it.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.nigelcrawley.co.uk/bbc/&quot;&gt;Ajax BBC News RSS Reader&lt;/a&gt; : demo by Nigel Crawley&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://aquajax.com/&quot;&gt;AJAX Chat in Python with Dojo&lt;/a&gt; : at AquaAjax&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.linuxuser.at/chess/&quot;&gt;Ajax Chess&lt;/a&gt; : multiplayer chess&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.backbase.com/demos/explorer/&quot;&gt;Ajax examples at BackBase&lt;/a&gt; : examples demonstrating several aspects of the Backbase technology.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://openrico.org/rico/demos.page&quot;&gt;Ajax examples at Rico&lt;/a&gt; : Inner HTML, JavaScript updater etc.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.propeller-head.biz/demo/desktop/&quot;&gt;Ajax examples using ColdFusionMX, SQLServer, SOAP&lt;/a&gt; : Contact Manager, NOAA 7 Day Forecast code and demos.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.feedfeeds.com/feedtv&quot;&gt;Ajax Feed TV&lt;/a&gt; : News feed&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.chevol.com/Blog/tabid/61/EntryID/22/Default.aspx&quot;&gt;Ajax inline dictionary&lt;/a&gt; : Highlight any text on this site then right click. A tooltip containing the definition of the selected word should show up.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.ajaxload.info/&quot;&gt;Ajaxload&lt;/a&gt; : Ajax loading gif generator.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.jamesdam.com/ajax_login/login.html&quot;&gt;Ajax Login Demo&lt;/a&gt; : Creating a secure login system using XMLHttpRequest&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://software500.pathf.com/&quot;&gt;Ajax Newsletter Signup&lt;/a&gt; : A newsletter signup form that shows Thank You on the same page.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.vertexlogic.com/&quot;&gt;ajaxProject&lt;/a&gt; : Project Management applicaiton with rich UI&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.masuga.com/thelab/ajaxrate/&quot;&gt;Ajax Rater&lt;/a&gt; : A star rating system that uses Ajax.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.robertnyman.com/2005/11/13/proudly-presenting-ajax-s/&quot;&gt;AJAX-S&lt;/a&gt; : An Ajax-based slideshow system.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.broken-notebook.com/spell_checker&quot;&gt;AJAX Spell Checker&lt;/a&gt; : spell check text / form content.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://ajaxtoolbox.com/&quot;&gt;Ajax Toolbox&lt;/a&gt; : Tools for the Ajax Developer&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://lmap.co.nr/Amazon1.htm&quot;&gt;Amazon Catalog Tree&lt;/a&gt; : Amazon Catalog Tree&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.francisshanahan.com/zuggest.aspx&quot;&gt;Amazon Zuggest&lt;/a&gt; : Amazon product suggestion (like google suggest)&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.symfony-project.com/askeet/8&quot;&gt;Askeet by symfony&lt;/a&gt; : Digg-like AJAX interactions; open source&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.backbase.com/?no-loop#home/home.xml%5B0%5D&quot;&gt;Backbase - Ajax Demos&lt;/a&gt; : Ajax demos at BackBase&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.clearnova.com/ajax/&quot;&gt;Basic Ajax Examples&lt;/a&gt; : Ping, track changes, drop down, Google suggest hack etc at Clearnova&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://bennolan.com/behaviour/more.html&quot;&gt;Behaviour&lt;/a&gt; : Fading lists, Sortable lists, Dropout boxen, Shaky lists&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://gamma.nic.fi/%7Ejmp/chat/app.html&quot;&gt;chat.app&lt;/a&gt; : ajax chat&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://chi.lexigame.com/&quot;&gt;Chihuahua Word Puzzle&lt;/a&gt; : daily word puzzles&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.couloir.org/&quot;&gt;Coloir&lt;/a&gt; : Ajax Slideshow&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.def-logic.com/games.html&quot;&gt;DHTML arcade/action games&lt;/a&gt; : a collection that demonstrate the power of DHTML&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.domapi.com/index.cfm?action=examples&quot;&gt;DomAPI&lt;/a&gt; : Windows Desktop, Outlook-like, RSS Reader&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.cyberdummy.co.uk/test/cart.php&quot;&gt;Drag and Drop Shopping Cart Demo&lt;/a&gt; : at CyberDummy&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.yvoschaap.com/index.php/weblog/ajax_inline_instant_update_text_20&quot;&gt;Easy AJAX inline text edit 2.0&lt;/a&gt; : edit a piece of text inline&lt;/li&gt;    &lt;li&gt;&lt;a href=&quot;http://encodable.com/filechucker/&quot;&gt;FileChucker&lt;/a&gt; : File upload and progress bar at Encodable.com&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.cyberdummy.co.uk/test/username-ajax.php&quot;&gt;Gmail Style Check Username AJAX Demo&lt;/a&gt; : at CyberDummy&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://code.google.com/webtoolkit/documentation/examples/&quot;&gt;Google Web Toolkit Example Projects&lt;/a&gt; : Hello World, Dynamic Table, Desktop App Clone etc&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://amix.dk/projects/?page_id=5#Download_-_the_&quot;&gt;GreyBox&lt;/a&gt; : Pop up window using idea of light box.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.fiftyfoureleven.com/resources/programming/xmlhttprequest/examples&quot;&gt;FiftyFourEleven: Ajax Examples&lt;/a&gt;&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.abaqueinside.com/IntuiCatAjaxDemoVerif.asp&quot;&gt;IntuiCat - ajax Catalogue&lt;/a&gt; : Ajax-based Catalogue Demo&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.linb.net/linb/&quot;&gt;jsLINB programming demos&lt;/a&gt; : LINB(Lazy INternet and Browser)&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://earthcode.com/blog/2005/12/jslog.html&quot;&gt;JSlog&lt;/a&gt; : Ajax logging tool.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.masswerk.at/jsuix/jsuix_support/&quot;&gt;JS/UIX Unix Shell&lt;/a&gt; : JS/UIX is an UN*X-like OS for standard web-browsers, written entirely in JavaScript.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://socket7.net/lace/&quot;&gt;Lace&lt;/a&gt; : free web chat application&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.huddletogether.com/projects/lightbox2/&quot;&gt;Lightbox&lt;/a&gt; : simple, unobtrusive script used to overlay images on the current page.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.eight.nl/files/leightbox/&quot;&gt;Leightbox&lt;/a&gt; : Light Box with inline div&amp;rsquo;s instead of AJAX calls.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.ajaxtechforums.com/viewtopic.php?t=21&quot;&gt;Live Quote Demo&lt;/a&gt; : Simple way of creating an updating stock quote table in ajax.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.broken-notebook.com/magnetic&quot;&gt;Magnetic Poetry&lt;/a&gt; : drag and drop poetry&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://metatron.rhea-silva.com/&quot;&gt;Metatron Chat Engine&lt;/a&gt; : PHP/MySQL/JavaScript powered chat engine&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.monket.net/cal&quot;&gt;Monket Calendar&lt;/a&gt; : online calendar&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.cyberdummy.co.uk/test/dd.php&quot;&gt;Multi List Drag Drop Demo&lt;/a&gt; : at CyberDummy&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.netdirector.org/&quot;&gt;NetDirector&lt;/a&gt; : open and extensible framework for managing configurations of common open source network services.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://demo.neximage.com/&quot;&gt;nexImage&lt;/a&gt; : Image processing demo&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.opera.com/products/mobile/platform/&quot;&gt;Opera Platform&lt;/a&gt; : Enabling AJAX applications on mobile phones&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.orbeon.com/ops/goto-example/xforms-controls&quot;&gt;Orbeon examples&lt;/a&gt; : various examples illustrating the capabilities of OPS, from the OPS Tutorial examples to XForms examples&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.ovosuite.com/&quot;&gt;OVO Suite : Online Virtual Office&lt;/a&gt; : virtual office limited demo&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.phpfreechat.net/&quot;&gt;phpFreeChat&lt;/a&gt; : php Free Chat&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://meyerweb.com/eric/tools/s5/&quot;&gt;S5: A Simple Standards-Based Slide Show System&lt;/a&gt; : S5 is a slide show format based entirely on XHTML, CSS, and JavaScript.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://mir.aculo.us/stuff/reflector/reflector.html&quot;&gt;script.aculo.us Reflector&lt;/a&gt; : image reflector script that uses uses opacity-based fades&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.cyberdummy.co.uk/test/slider/&quot;&gt;Slider Bar Demo&lt;/a&gt; : at CyberDummy&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://rockstars.homedns.org/smallestajax/index.php&quot;&gt;SmallestAjax&lt;/a&gt; : Smallest Ajax example in the world?&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://demo.primalgrasp.com/spell/edit_text&quot;&gt;Spell Check demo&lt;/a&gt; : by Primal Grasp&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.janis.or.jp/users/segabito/JavaScriptMaryo.html&quot;&gt;Super Maryo World&lt;/a&gt; : Japanese game demo&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://demo.opennotion.com/tacos4/app&quot;&gt;Tacos&lt;/a&gt; : Tacos provides a library of useful Tapestry components. This application provides some examples to get you started.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.agavegroup.com/agWork/theList/theListWrapper.php&quot;&gt;theList&lt;/a&gt; : to-do list / bug-tracker&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://codylindley.com/Javascript/257/thickbox-one&quot;&gt;ThickBox&lt;/a&gt; : ThickBox is a Lightbox than can show html pages as well as images.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://tooltip.crtx.org/&quot;&gt;Tooltip.js&lt;/a&gt; : Tooltip.js is a simple class to make it possible to add tooltips to your page.&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://treehouse.ofb.net/chat/?lang=en&quot;&gt;Treehouse Chat&lt;/a&gt; : ajax chat&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://tudu.sourceforge.net/&quot;&gt;Tudu Lists&lt;/a&gt; : open-source to-do lists&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://weboggle.shackworks.com/&quot;&gt;WeBoggle&lt;/a&gt; : Ajax Boggle&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.plasticshore.com/projects/chat/&quot;&gt;XHTML live Chat&lt;/a&gt; : ajax chat&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.myjavaserver.com/%7Eharikrishnag/yahoo.html&quot;&gt;YahooSearchAsYouType&lt;/a&gt; : Yahoo search as you type&lt;/li&gt;    &lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.potix.com/zkdemo/userguide&quot;&gt;ZK Demo&lt;/a&gt; : demo programs for various components&lt;/li&gt;&lt;/ol&gt;&lt;p&gt; Copyright © 2008&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.knitdream.com/Post/94.Shtml&quot; target=&quot;_blank&quot;&gt;继续阅读...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;分类: &lt;a href=&quot;http://www.knitdream.com/Post/Web.Shtml&quot;&gt;设计开发&lt;/a&gt; | Tags: &lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=Ajax&quot;&gt;Ajax&lt;/a&gt;&amp;nbsp;&amp;nbsp; | &lt;a href=&quot;http://www.knitdream.com/Post/94.Shtml#comment&quot; target=&quot;_blank&quot;&gt;添加评论&lt;/a&gt;(0)&lt;/p&gt;&lt;h3&gt;相关文章:&lt;/h3&gt;&lt;ul&gt;&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/98.Shtml&quot;  title=&quot;CSS新手阅读的CSS技巧十则&quot;&gt;CSS新手阅读的CSS技巧十则&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-24 13:14:1)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/90.Shtml&quot;  title=&quot;8个简单实用的CSS秘诀 &quot;&gt;8个简单实用的CSS秘诀 &lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-13 19:23:52)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/89.Shtml&quot;  title=&quot;Generic Malware Debunking Post&quot;&gt;Generic Malware Debunking Post&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-13 19:13:41)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/AjaxPHP.Shtml&quot;  title=&quot;Ajax+PHP分页程序代码&quot;&gt;Ajax+PHP分页程序代码&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-4-12 15:21:38)&lt;/p&gt;


&lt;/ul&gt;&lt;br /&gt;&lt;!-- Feedsky flare --&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=086d78b77357d2cfff3f3dacad28782f&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=086d78b77357d2cfff3f3dacad28782f&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=31f5f1aa678b3493da59ec2ae59e6450&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=31f5f1aa678b3493da59ec2ae59e6450&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=e0f1ca4106fb77b22841e9c7651433de&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=e0f1ca4106fb77b22841e9c7651433de&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=37dd266de45870de2cf37b755eba2f66&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=37dd266de45870de2cf37b755eba2f66&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=b6b945d725e36c56c68a223a24a8f593&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=b6b945d725e36c56c68a223a24a8f593&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=d1887799180f7882221cf27f33288727&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=d1887799180f7882221cf27f33288727&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=aed7b36ce79da73cf5e94a759aab2c78&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=aed7b36ce79da73cf5e94a759aab2c78&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;!-- /Feedsky flare --&gt;</description><category>设计开发</category><pubDate>Tue, 15 Jul 2008 22:02:46 +0800</pubDate><author>Sctercn@Gmail.com (admin)</author><comments>http://www.knitdream.com/Post/94.Shtml#comment</comments><guid isPermaLink="false">http://www.knitdream.com/Post/94.Shtml</guid><dc:creator>Sctercn@Gmail.com (admin)</dc:creator><fs:srclink>http://www.knitdream.com/Post/94.Shtml</fs:srclink><fs:srcfeed>http://www.knitdream.com/feed.asp</fs:srcfeed><fs:itemid>feedsky/knitdream/~7010406/94535091/5118421</fs:itemid></item><item><title>地心游记3D-Journey to the Center of the Earth 3D在线免费观看</title><link>http://item.feedsky.com/~feedsky/knitdream/~7010406/94535092/5118421/1/item.html</link><wfw:comment>http://www.knitdream.com/</wfw:comment><wfw:commentRss>http://www.knitdream.com/feed.asp?cmt=93</wfw:commentRss><trackback:ping>http://www.knitdream.com/cmd.asp?act=tb&amp;id=93&amp;key=d6f69ebe</trackback:ping><description>&lt;p&gt;&lt;a href=&quot;http://datalib.ent.qq.com/movie/pic/info/2008-06-26/20080626150104941861462.jpg&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://datalib.ent.qq.com/movie/pic/info/2008-06-26/20080626150104941861462.jpg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;642&quot; border=&quot;0&quot;&gt;    &lt;tbody&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; id=&quot;mov_name&quot; align=&quot;left&quot; bgcolor=&quot;#f4f4f4&quot; height=&quot;22&quot;&gt;片名：地心游记3D&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; id=&quot;mov_name&quot; align=&quot;left&quot; height=&quot;22&quot;&gt;又名：地心漫游记/地心冒险&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; align=&quot;left&quot; bgcolor=&quot;#f4f4f4&quot; height=&quot;22&quot;&gt;英文片名：Journey to the Center of the Earth 3D&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; align=&quot;left&quot; height=&quot;22&quot;&gt;国家/地区：&lt;u&gt;美国&lt;/u&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; align=&quot;left&quot; bgcolor=&quot;#f4f4f4&quot; height=&quot;22&quot;&gt;区域：&lt;u&gt;欧美&lt;/u&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; align=&quot;left&quot; height=&quot;22&quot;&gt;            &lt;div title=&quot;&quot; style=&quot;overflow: hidden; width: 642px; white-space: nowrap; text-overflow: ellipsis&quot; align=&quot;left&quot;&gt;出品：&lt;/div&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; align=&quot;left&quot; bgcolor=&quot;#f4f4f4&quot; height=&quot;22&quot;&gt;发行：华纳 Warner Bros. Pictures&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; align=&quot;left&quot; height=&quot;22&quot;&gt;类型：&lt;u&gt;动作&lt;/u&gt; &lt;u&gt;冒险&lt;/u&gt; &lt;u&gt;科幻&lt;/u&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; align=&quot;left&quot; bgcolor=&quot;#f4f4f4&quot; height=&quot;22&quot;&gt;导演： 埃里克&amp;middot;布雷维格Eric Brevig Eric Brevig&amp;quot;; 埃里克&amp;middot;布雷维格Eric Brevig 埃里克&amp;middot;布雷维格Eric Brevig 埃里克&amp;middot;布雷维格Eric Brevig } 埃里克&amp;middot;布雷维格&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; align=&quot;left&quot; height=&quot;22&quot;&gt;编剧：&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; align=&quot;left&quot; bgcolor=&quot;#f4f4f4&quot; height=&quot;22&quot;&gt;主演：布兰登&amp;middot;弗雷泽Brendan Fraser 乔什&amp;middot;哈切森Josh Hutcherson 安妮塔&amp;middot;布雷伊姆Anita Briem 吉安卡洛&amp;middot;卡塔彼安诺Giancarlo Caltabiano&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; align=&quot;left&quot; height=&quot;22&quot;&gt;分级：&lt;u&gt;美国PG&lt;/u&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;pl12&quot; align=&quot;left&quot; bgcolor=&quot;#f4f4f4&quot; height=&quot;22&quot;&gt;上映时间：&lt;u&gt;2008年7月11日&lt;/u&gt;&lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;div class=&quot;blank9&quot;&gt;&amp;nbsp;&lt;a href=&quot;http://img1.qq.com/ent/pics/11655/11655676.jpg&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://img1.qq.com/ent/pics/11655/11655676.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;p&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;642&quot; border=&quot;0&quot;&gt;    &lt;tbody&gt;        &lt;tr&gt;            &lt;td class=&quot;list_title_mov&quot; align=&quot;left&quot; height=&quot;33&quot;&gt;&lt;strong class=&quot;fs_blue_gengshen fs14&quot;&gt;详细剧情&lt;/strong&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;fs1&quot; height=&quot;5&quot;&gt;&amp;nbsp;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;line22&quot; background=&quot;http://mat1.qq.com/ent/datalib/ent/blankbg.gif&quot;&gt;            &lt;p style=&quot;text-indent: 2em; text-align: left&quot;&gt;传说，在冰岛的某个火山口之下，隐藏着一条路途，这条路不但直通地球核心，还将通往一个光怪陆离的地心世界。这个被大多数人嗤之以鼻的&amp;ldquo;无稽之谈&amp;rdquo;，却让一对兄弟心醉神往--身为大学教授、地质学家的特雷弗（布兰登&amp;middot;弗雷泽），就此提出一套看似稀奇古怪的假说设想，却因此沦为学院笑柄，学术名声几乎毁于一旦；而哥哥马克思则身体力行，为了搜寻传说中的&amp;ldquo;火山通道&amp;rdquo;，自此多年前下落不明。 &lt;br /&gt;            可这些都不能阻挡特雷弗打破沙锅搜寻到底的决心，为了继续研究，他甚至差点无家可归。一次偶然，特雷弗和侄子肖恩（乔什&amp;middot;哈切森）在一本古籍里发现了一张古老的羊皮纸，为了寻个究竟，他们毅然决定依照记载，前往冰岛探险！在沿途，他们还偶遇了美女向导汉娜（安妮塔&amp;middot;布雷伊姆），而汉娜的父亲，正是当年和马克思有所联系的老科学家。按照计划，他们一行将跋涉登山，如果一切顺利，也许在太阳下山之前，便可以收工回家。 &lt;br /&gt;            然而，一切的确别有洞天！意外的一阵电闪雷鸣，顷刻便将三人劈入了神秘洞穴。洞穴外山石封压，而沿着洞穴往里走的他们，却又不慎踏上了崩塌的地面跌入了无底深渊。更没想到的是，幽深的洞底之下不但有一汪大湖，还竟真有一个神秘的地心世界！稀奇古怪的生物、美轮美奂的奇观，特雷弗的&amp;ldquo;无稽之谈&amp;rdquo;终于有了扬眉吐气的机会。可最关键的问题是，离地心滚烫熔岩把他们烤焦之前，仅剩不到48个小时，这三个进了大观园的倒霉鬼，能不能在这之前找到另外一条出路，逃出生天？&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;div class=&quot;blank9&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;642&quot; border=&quot;0&quot;&gt;    &lt;tbody&gt;        &lt;tr&gt;            &lt;td class=&quot;list_title_mov&quot; align=&quot;left&quot; height=&quot;33&quot;&gt;&lt;strong class=&quot;fs_blue_gengshen fs14&quot;&gt;看点&lt;/strong&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;line22&quot; background=&quot;http://mat1.qq.com/ent/datalib/ent/blankbg.gif&quot;&gt;            &lt;p style=&quot;text-indent: 2em; text-align: left&quot;&gt;自打《国家宝藏》复活了寻宝探险，探宝行家们又开始了浪迹天涯--欲老弥坚的&amp;ldquo;印第安纳&amp;middot;琼斯&amp;rdquo;摩拳擦掌，继续穿越的&amp;ldquo;木乃伊&amp;rdquo;也打起了中国帝王的主意。可比起小儿科的盗墓冒险，凡尔纳大叔1864年就鼓捣出的科幻经典《地心游记》，才是探险王国的终极选项。1959年问世的一版电影一举斩获3项奥斯卡提名，便是地心游记威力一斑。 &lt;br /&gt;            没有金刚钻，哪敢揽瓷器活！胆敢挑战经典，《地心游记3D》着实有过人的杀手锏。凡尔纳奇诡绚丽的想象自不必谈，光&amp;ldquo;史无前例第一部3D大片&amp;rdquo;的高帽，加上曾打造过《深渊》、《全面回忆》、《珍珠港》等大片特效而获得小金人视效达人导演，就足以让人享够眼球冰淇淋。虽说技术革新大势所趋，投靠3D立体的影片也不在少数，可在此之前，三维的极致也不过是动画、短片或者电影片段，这般全片3D拍摄的感官刺激，吸引力菲浅！试想，试映中仅水虎鱼猛然跃起的场面就吓得观众当即跳弹，加上与食人鱼交战、地下深海探险、古老矿车狂飙，甚至&amp;ldquo;侏罗纪公园&amp;rdquo;式的霸王龙捕杀等等，重重惊险绝对值得一看。 &lt;br /&gt;            有了视效大导詹姆斯&amp;middot;卡梅隆亲自负责开发的3D摄影机系统，也难怪影片底气十足--电影通篇，几乎只有3个主要演员摸爬滚打填充门面。《盗墓迷城》里的冒险大王布兰登&amp;middot;弗雷泽主打耍宝，踏出梦奇地《仙境之桥》的小帅哥乔什&amp;middot;哈切森则继续驰骋于幻想世界...。说到底，有了&amp;ldquo;活生生&amp;rdquo;的地心世界初现银幕，哪还需要其他？&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;list_title_mov&quot; align=&quot;left&quot; height=&quot;33&quot;&gt;&lt;strong class=&quot;fs_blue_gengshen fs14&quot;&gt;其他&lt;/strong&gt;&lt;/td&gt;        &lt;/tr&gt;        &lt;tr&gt;            &lt;td class=&quot;line22&quot; background=&quot;http://mat1.qq.com/ent/datalib/ent/blankbg.gif&quot;&gt;            &lt;p style=&quot;text-indent: 2em; text-align: left&quot;&gt;上天入地身临其境，坐上深矿列车一路呼啸，闯进地心神秘世界，探究美妙奇景，继而历尽惊险劫后余生，如此惊心动魄之旅，只需要一张电影票的价钱。没错，好莱坞大鳄们齐声令下，这很可能就是未来普及的影视蓝图，而骄傲的以3D为后缀的《地心游记3D》，正是立体电影辉煌时代的序幕。所以，尽管拍摄3D电影仍然复杂重重，本片也更像大型主题公园历险而非真正天马行空的猎奇，可这位第一个吃螃蟹的家伙，还是当仁不让地成为了先驱标杆。 &lt;br /&gt;            掀开立体酷炫技术的神秘面纱，你会惊奇地发现：3D果然能够让&amp;ldquo;母猪赛貂蝉&amp;rdquo;！拍摄时弗雷泽坠下瀑布的大戏，原来不过是&amp;ldquo;停车场夜晚+演员们倒吊绳索&amp;rdquo;的简易处理-因为负担不起搭建实景的费用，现场只不过是铺上了黑色塑料的50英尺台子，再用消防水管从高处冲刷，立体处理之后，效果却依然无可比拟。也难怪全新的地心冒险信心满满地瞄准了PG评级的老少咸宜，不是因为老辣的凡尔纳，也不是因为地心幻想的绚丽，而是因为：要轻易抗拒3D瑰奇的外衣，没那么容易！&lt;/p&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;地心游记3D&lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;embed type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;sameDomain&quot; src=&quot;http://player.youku.com/player.php/sid/XMjY5OTMwNTI=/v.swf&quot; quality=&quot;high&quot; width=&quot;480&quot; height=&quot;400&quot; align=&quot;middle&quot;&gt;&lt;/embed&gt;&lt;/p&gt;&lt;p&gt; Copyright © 2008&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.knitdream.com/Post/93.Shtml&quot; target=&quot;_blank&quot;&gt;继续阅读...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;分类: &lt;a href=&quot;http://www.knitdream.com/Post/News.Shtml&quot;&gt;新闻娱乐&lt;/a&gt; | Tags: &lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=%E5%9C%B0%E5%BF%83%E6%B8%B8%E8%AE%B03D&quot;&gt;地心游记3D&lt;/a&gt;&amp;nbsp;&amp;nbsp; | &lt;a href=&quot;http://www.knitdream.com/Post/93.Shtml#comment&quot; target=&quot;_blank&quot;&gt;添加评论&lt;/a&gt;(0)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.knitdream.com/Post/93.Shtml#comment&quot; target=&quot;_blank&quot;&gt;找不到相关文章，请发表流言&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;!-- Feedsky flare --&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=64637b6f1643ad4c82bdab553d717b4d&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=64637b6f1643ad4c82bdab553d717b4d&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=acfbb32f33c7dcf8401fc1e657961546&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=acfbb32f33c7dcf8401fc1e657961546&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=a37b4880a168c104a922f4dc48704b0f&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=a37b4880a168c104a922f4dc48704b0f&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=80a019ae13be0f543d89624cfb703522&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=80a019ae13be0f543d89624cfb703522&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=61280e82088e80fcb8c4dfd8871f7009&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=61280e82088e80fcb8c4dfd8871f7009&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=1d623566bbb9a63f7b29736772e4737f&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=1d623566bbb9a63f7b29736772e4737f&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=ba20004861b2d5f1af0014fb8017d170&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=ba20004861b2d5f1af0014fb8017d170&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;!-- /Feedsky flare --&gt;</description><category>新闻娱乐</category><pubDate>Tue, 15 Jul 2008 15:43:23 +0800</pubDate><author>Sctercn@Gmail.com (admin)</author><comments>http://www.knitdream.com/Post/93.Shtml#comment</comments><guid isPermaLink="false">http://www.knitdream.com/Post/93.Shtml</guid><dc:creator>Sctercn@Gmail.com (admin)</dc:creator><fs:srclink>http://www.knitdream.com/Post/93.Shtml</fs:srclink><fs:srcfeed>http://www.knitdream.com/feed.asp</fs:srcfeed><fs:itemid>feedsky/knitdream/~7010406/94535092/5118421</fs:itemid></item><item><title>Bodog’s Battle of the Brand</title><link>http://item.feedsky.com/~feedsky/knitdream/~7010406/94535093/5118421/1/item.html</link><wfw:comment>http://www.knitdream.com/</wfw:comment><wfw:commentRss>http://www.knitdream.com/feed.asp?cmt=92</wfw:commentRss><trackback:ping>http://www.knitdream.com/cmd.asp?act=tb&amp;id=92&amp;key=191bfb2d</trackback:ping><description>&lt;p&gt;Early last week, Bodog Entertainment lost control of over 3000 domain names, including bodog.com due to a default judgment in a patent infringement case. I&amp;rsquo;m not going to delve into the specifics involving the suit, or the potential ramifications to the web as whole, because that has already been covered in great detail in other places.&lt;/p&gt;&lt;p&gt;Instead, I think there is some great value in taking the time to look at the SEO implications of last week&amp;rsquo;s domain seizure. In terms of organic search, Bodog has been the 800lb Gorilla for quite some time. Not only did they dominate the SERPS for popular generic gambling phrases, they also enjoyed an extremely high level of search traffic from branded terms. Even to the point that Google returns the word &amp;ldquo;bodog&amp;rdquo; as a related search for &amp;ldquo;poker&amp;rdquo; and &amp;ldquo;online poker.&amp;rdquo;&lt;/p&gt;&lt;p&gt;&lt;a title=&quot;Bodog Sportsbook, Poker and Casino&quot; href=&quot;http://www.gregboser.com/wp-content/files/bodog.jpg&quot;&gt;&lt;img alt=&quot;Bodog Online Sportsbook, Poker and Casino&quot; align=&quot;right&quot; border=&quot;0&quot; rel=&quot;lightbox[slideshow]&quot; jquery1216106610357=&quot;2&quot; src=&quot;http://www.gregboser.com/wp-content/files/bodog.jpg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Now, if you&amp;rsquo;re new to the SEO game, it&amp;rsquo;s important to understand that getting to a point where the world&amp;rsquo;s largest search engine thinks your brand is synonymous for the two most coveted generic phrases within your space is pretty much the equivalent of reaching SEO Nirvana.&amp;nbsp; Obviously, the volume of search traffic being in that type of position produces has a positive impact on the bottom line.&amp;nbsp; But the real question is will the loss of that traffic be as devastating to Bodog as many people are suggesting?&lt;/p&gt;&lt;p&gt;For many other companies in Bodog&amp;rsquo;s space, I&amp;rsquo;d say the answer would be an absolute yes. But Bodog has a huge advantage over everyone else, because no one understands how to build and maintain a brand better than they do. Bodog is much more than an online gambling company. They are a digital entertainment company that has successfully established their brand in several different verticals in an extremely short period of time. And they also have an incredible understanding of how to leverage the web.&lt;/p&gt;&lt;p&gt;While they may have lost temporary control of their branded domain names, the plaintiff in the case can&amp;rsquo;t seize control all the other places on the web where their brand is deeply entrenched.&amp;nbsp; (MySpace,&amp;nbsp; YouTube,&amp;nbsp; Flickr,&amp;nbsp; etc.)&lt;/p&gt;&lt;p&gt;All of that, combined with an extremely proactive PR team who jumped out in front of the story so that it could be leveraged in their favor has put them in a position that will make it fairly easy for them to weather the storm.&lt;a href=&quot;http://www.gregboser.com/wp-content/files/bodog-related.gif&quot;&gt;&lt;img border=&quot;0&quot; rel=&quot;lightbox[slideshow]&quot; jquery1216106610357=&quot;3&quot; alt=&quot;&quot; src=&quot;http://www.gregboser.com/wp-content/files/bodog-related.gif&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;In just a little over a week, Bodog has been able to establish over 43,000 links to their new domain.&lt;/p&gt;&lt;p&gt;That has helped put them back in the top 20 for the term &amp;ldquo;bodog&amp;rdquo; despite the fact that Google hasn&amp;rsquo;t even come close to purging all the pages from the original domain, and dozens of opportunistic affiliate spammers are coming out of the woodwork trying to rank for Bodog&amp;rsquo;s name.&lt;/p&gt;&lt;p&gt;Within the next couple of weeks, I think you&amp;rsquo;ll see Bodog regain most of their branded SERPS, and then generic phrases will begin coming back as well.&amp;nbsp; It just isn&amp;rsquo;t possible to suppress a brand with the level of momentum Bodog has for very long.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt; Copyright © 2008&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.knitdream.com/Post/92.Shtml&quot; target=&quot;_blank&quot;&gt;继续阅读...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;分类: &lt;a href=&quot;http://www.knitdream.com/Post/Seo.Shtml&quot;&gt;SEO&lt;/a&gt; | Tags: &lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=Google&quot;&gt;Google&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=SEO&quot;&gt;SEO&lt;/a&gt;&amp;nbsp;&amp;nbsp; | &lt;a href=&quot;http://www.knitdream.com/Post/92.Shtml#comment&quot; target=&quot;_blank&quot;&gt;添加评论&lt;/a&gt;(0)&lt;/p&gt;&lt;h3&gt;相关文章:&lt;/h3&gt;&lt;ul&gt;&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/97.Shtml&quot;  title=&quot;Google改进后的Flash索引&quot;&gt;Google改进后的Flash索引&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-18 19:52:42)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/96.Shtml&quot;  title=&quot;Google搜索结果页面点击分配&quot;&gt;Google搜索结果页面点击分配&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-18 19:38:38)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/91.Shtml&quot;  title=&quot;Yahoo Patents Anchor Text Relevance in Search Indexing&quot;&gt;Yahoo Patents Anchor Text Relevance in Search Indexing&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-14 19:30:37)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/88.Shtml&quot;  title=&quot;Content analysis and Sitemap details, plus more languages&quot;&gt;Content analysis and Sitemap details, plus more languages&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-13 10:3:53)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/87.Shtml&quot;  title=&quot;Google Releases Protocol Buffers Into the Wild&quot;&gt;Google Releases Protocol Buffers Into the Wild&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-10 18:57:27)&lt;/p&gt;


&lt;/ul&gt;&lt;br /&gt;&lt;!-- Feedsky flare --&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=cfdf7035b0ad69ec1a6b79cf0df8560e&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=cfdf7035b0ad69ec1a6b79cf0df8560e&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=8aca8def957e850dbcec2d67def429c2&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=8aca8def957e850dbcec2d67def429c2&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=3004ab1e2e9dc7391b0701e25726c370&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=3004ab1e2e9dc7391b0701e25726c370&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=d104ebb6d8a607e672c1d786c347ae8f&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=d104ebb6d8a607e672c1d786c347ae8f&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=bcbe9edbb3df285d48f9148c3602b2b2&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=bcbe9edbb3df285d48f9148c3602b2b2&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=0125ba8f62a074175fea75760ebe0eb0&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=0125ba8f62a074175fea75760ebe0eb0&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=d614330cb28f928d8bbc276caefd3cd9&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=d614330cb28f928d8bbc276caefd3cd9&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;!-- /Feedsky flare --&gt;</description><category>SEO</category><pubDate>Tue, 15 Jul 2008 15:19:19 +0800</pubDate><author>Sctercn@Gmail.com (admin)</author><comments>http://www.knitdream.com/Post/92.Shtml#comment</comments><guid isPermaLink="false">http://www.knitdream.com/Post/92.Shtml</guid><dc:creator>Sctercn@Gmail.com (admin)</dc:creator><fs:srclink>http://www.knitdream.com/Post/92.Shtml</fs:srclink><fs:srcfeed>http://www.knitdream.com/feed.asp</fs:srcfeed><fs:itemid>feedsky/knitdream/~7010406/94535093/5118421</fs:itemid></item><item><title>Yahoo Patents Anchor Text Relevance in Search Indexing</title><link>http://item.feedsky.com/~feedsky/knitdream/~7010406/94535094/5118421/1/item.html</link><wfw:comment>http://www.knitdream.com/</wfw:comment><wfw:commentRss>http://www.knitdream.com/feed.asp?cmt=91</wfw:commentRss><trackback:ping>http://www.knitdream.com/cmd.asp?act=tb&amp;id=91&amp;key=9aadb6c2</trackback:ping><description>&lt;p&gt;Yahoo was granted a patent this week which describes how anchor text in links may be used to increase the relevancy ranking of a page pointed to by that anchor text. The patent was originally filed in 2002, and it discusses how anchor text might work while naming the Altavista search engine as a possible place where the methods it describes might be implemented. Yahoo acquired the company that owned Altavista, and the technology is theirs.&lt;/p&gt;&lt;p&gt;While the patent is fairly old, it provides some details about how anchor text might be used by a search engine in a search index that may not be widely known.&lt;/p&gt;&lt;p&gt;It&amp;rsquo;s fairly common knowledge that the major commercial search engines pay attention to the anchor text in links pointing to pages, and may consider a page to be even more relevant for a query term if the term not only appears on a page, but also appears in the linked anchor text pointing to a page. Some pages may even be determined to be relevant for words that they don&amp;rsquo;t contain, but which show up in links to those pages.&lt;/p&gt;&lt;p&gt;However, we don&amp;rsquo;t know much about how much weight anchor text might be given when a search engine indexes a page, or if and how some anchor text might be determined to be more important than other anchor text.&lt;/p&gt;&lt;p&gt;We&amp;rsquo;ve even seen lately some discussion about experiments with two links on the same page, using different anchor text, pointing to the same page passing along relevance to that second page with both links - See Google passes second link&amp;rsquo;s anchor text.&lt;/p&gt;&lt;p&gt;How Anchor Text is Broken into Tokens to be Weighed&lt;/p&gt;&lt;p&gt;The process is fairly simple. It starts with a search engine collecting a list of pages that have hyperlinks pointing to a specific page.&lt;/p&gt;&lt;p&gt;The anchor text from those links are retrived and may be broken down into one or more tokens. For example, the anchor text pointing to a page might be &amp;ldquo;Best Louis Armstrong site.&amp;rdquo;&lt;/p&gt;&lt;p&gt;That anchor text might be broken down into the following tokens:&lt;/p&gt;&lt;p&gt;Best Louis Armstrong site &lt;br /&gt;Louis Armstrong &lt;br /&gt;Louis &lt;br /&gt;Armstrong &lt;br /&gt;Best &lt;br /&gt;Best Louis &lt;br /&gt;Best Armstrong &lt;br /&gt;Best site &lt;br /&gt;A weight might be calculated for each of those tokens, and if the weight for any token exceeds a certain threshold weight, the page it points towards might be indexed under that token.&lt;/p&gt;&lt;p&gt;The weight for tokens, or words and sequences of words, found in the anchor text is calculated using a formula that looks at how often each token can be found in anchor text pointing to that particular page, and how often the token appears in the search engine index.&lt;/p&gt;&lt;p&gt;Example&lt;/p&gt;&lt;p&gt;A web page to be indexed has a number of other pages linking to it.&lt;/p&gt;&lt;p&gt;The page is about the musician, Louis Armstrong.&lt;/p&gt;&lt;p&gt;The first linking page uses the anchor text &amp;ldquo;Louis.&amp;rdquo;&lt;/p&gt;&lt;p&gt;The second linking page uses the anchor text &amp;ldquo;Louis Armstrong.&amp;rdquo;&lt;/p&gt;&lt;p&gt;The third linking page uses the anchor text &amp;ldquo;best Louis Armstrong site.&amp;rdquo;&lt;/p&gt;&lt;p&gt;The fourth linking page uses the anchor text &amp;ldquo;Satchmo.&amp;rdquo;&lt;/p&gt;&lt;p&gt;The page to be indexed is highly relevant to the subject &amp;ldquo;Louis Armstrong&amp;rdquo; but it&amp;rsquo;s possible that conventional ranking methods may not rank that page as highly as it might deserve because the precise query terms may not appear in the page as frequently as in other, less relevant, pages. Or there may be many more sites that link to other less relevant pages about &amp;ldquo;Louis Armstrong&amp;rdquo;.&lt;/p&gt;&lt;p&gt;Each of the anchor texts pointing to the page may be broken down into tokens like my example for &amp;ldquo;Best Louis Armstrong site&amp;rdquo; was above.&lt;/p&gt;&lt;p&gt;When there are several tokens that are pointing to the same page, it might be helpful to see which of the tokens are the most important, and assign weights to those tokens.&lt;/p&gt;&lt;p&gt;This might be done by determining the weight of each token compared to the weight of all tokens pointing to the same page.&lt;/p&gt;&lt;p&gt;Some specific importance criteria might be used in the calculation of the weight of a token.&lt;/p&gt;&lt;p&gt;The greatest importance might be assigned to words that appear the least frequently in the search index, based on the idea that those words are more specifically related to the concept that a user would attempt to express.&lt;/p&gt;&lt;p&gt;A token that appears more frequently in anchor text pointing to a page could be given a higher weight.&lt;/p&gt;&lt;p&gt;Tokens that appear very frequently in the search index, such as &amp;ldquo;site&amp;rdquo; or &amp;ldquo;best&amp;rdquo;, might be discounted because they do not have specific importance in the context of the subject document.&lt;/p&gt;&lt;p&gt;Every token is assigned a weight and those tokens having a weight that is less than a threshold weight are discounted.&lt;/p&gt;&lt;p&gt;Tokens that are not discounted are are counted as being relevant for the page being indexed, with the tokens having the greatest weights being considered the most relevant.&lt;/p&gt;&lt;p&gt;The Yahoo Patent is:&lt;/p&gt;&lt;p&gt;Method for ranking web page search results&lt;br /&gt;Invented by Andrei Z. Broder and Farzin Maghoul&lt;br /&gt;Assigned to Overture Services, Inc.&lt;br /&gt;US Patent 7,398,461&lt;br /&gt;Granted July 8, 2008&lt;br /&gt;Filed: January 24, 2002&lt;/p&gt;&lt;p&gt;Conclusion&lt;/p&gt;&lt;p&gt;While this patent seems to have been applied for almost a lifetime ago, it provides some insights into the importance of anchor text in ranking pages that anchor text points towards. It also provides some insight into how much weight different words and phrases within anchor text might have when determining the relevancy relationship between those words and a page linked to with them.&lt;/p&gt;&lt;p&gt;Another patent from Yahoo was also granted this week on How Network Usage traffic can be used to in ranking web pages, and in assigning weights to links and link text based upon the frequency of use of those links. I&amp;rsquo;ve written about that over on the SEM Clubhouse, in How A Search Engine May Use Web Traffic Logs in Ranking Web Pages.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt; Copyright © 2008&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.knitdream.com/Post/91.Shtml&quot; target=&quot;_blank&quot;&gt;继续阅读...&lt;/a&gt;&lt;/p&gt;&lt;p&gt;分类: &lt;a href=&quot;http://www.knitdream.com/Post/Seo.Shtml&quot;&gt;SEO&lt;/a&gt; | Tags: &lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=SEO&quot;&gt;SEO&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://www.knitdream.com/catalog.asp?tags=Google&quot;&gt;Google&lt;/a&gt;&amp;nbsp;&amp;nbsp; | &lt;a href=&quot;http://www.knitdream.com/Post/91.Shtml#comment&quot; target=&quot;_blank&quot;&gt;添加评论&lt;/a&gt;(0)&lt;/p&gt;&lt;h3&gt;相关文章:&lt;/h3&gt;&lt;ul&gt;&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/97.Shtml&quot;  title=&quot;Google改进后的Flash索引&quot;&gt;Google改进后的Flash索引&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-18 19:52:42)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/96.Shtml&quot;  title=&quot;Google搜索结果页面点击分配&quot;&gt;Google搜索结果页面点击分配&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-18 19:38:38)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/92.Shtml&quot;  title=&quot;Bodog’s Battle of the Brand&quot;&gt;Bodog’s Battle of the Brand&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-15 15:19:19)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/88.Shtml&quot;  title=&quot;Content analysis and Sitemap details, plus more languages&quot;&gt;Content analysis and Sitemap details, plus more languages&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-13 10:3:53)&lt;/p&gt;


&lt;p&gt;&lt;a  href=&quot;http://www.knitdream.com/Post/87.Shtml&quot;  title=&quot;Google Releases Protocol Buffers Into the Wild&quot;&gt;Google Releases Protocol Buffers Into the Wild&lt;/a&gt;&amp;nbsp;&amp;nbsp;(2008-7-10 18:57:27)&lt;/p&gt;


&lt;/ul&gt;&lt;br /&gt;&lt;!-- Feedsky flare --&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=a196a52acf1c351c2d73fbeea265ba7e&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=a196a52acf1c351c2d73fbeea265ba7e&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=a78f0ffb655267620d9b58a7eebc4966&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=a78f0ffb655267620d9b58a7eebc4966&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=3c816d48f861710f806e41e36f196fc1&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=3c816d48f861710f806e41e36f196fc1&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=b049074e4d9cbab36fb26585aa529b2f&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=b049074e4d9cbab36fb26585aa529b2f&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=bdba5ec6805c9e5b8e775627c484b1c2&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=bdba5ec6805c9e5b8e775627c484b1c2&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=19a33c83536bb1302511f8c5743529e7&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=19a33c83536bb1302511f8c5743529e7&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://feed.feedsky.com/~flare/knitdream?a=2866b6ade7ba437519d8ba8c21660334&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://feed.feedsky.com/~flare/knitdream?i=2866b6ade7ba437519d8ba8c21660334&quot; border=&quot;0&quot;&gt;&lt;/a&gt;&lt;!-- /Feedsky flare --&gt;</description><category>SEO</category><pubDate>Mon, 14 Jul 2008 19:30:37 +0800</pubDate><author>Sctercn@Gmail.com (admin)</author><comments>http://www.knitdream.com/Post/91.Shtml#comment</comments><guid isPermaLink="false">http://www.knitdream.com/Post/91.Shtml</guid><dc:creator>Sctercn@Gmail.com (admin)</dc:creator><fs:srclink>http://www.knitdream.com/Post/91.Shtml</fs:srclink><fs:srcfeed>http://www.knitdream.com/feed.asp</fs:srcfeed><fs:itemid>feedsky/knitdream/~7010406/94535094/5118421</fs:itemid></item><item><title>8个简单实用的CSS秘诀</title><link>http://item.feedsky.com/~feedsky/knitdream/~7010406/94535095/5118421/1/item.html</link><wfw:comment>http://www.knitdream.com/</wfw:comment><wfw:commentRss>http://www.knitdream.com/feed.asp?cmt=90</wfw:commentRss><trackback:ping>http://www.knitdream.com/cmd.asp?act=tb&amp;id=90&amp;key=e4bd7bb3</trackback:ping><description>&lt;p&gt;下面列出了一些可以帮助你改善CSS样式表的简单实用的方法，如果你刚刚开始使用CSS，这篇日志可以帮助你更好的理解CSS。&lt;/p&gt;&lt;h4&gt;#1. 结构&lt;/h4&gt;&lt;p&gt;保持CSS结构清晰，不仅有助于保持CSS文件的简单，也利于日后的检查、更改。&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.lanrentuku.com/images/uppic/0805080010321.gif&quot;&gt;&lt;img alt=&quot;结构不好的CSS代码示例&quot; border=&quot;0&quot; src=&quot;http://www.lanrentuku.com/images/uppic/0805080010321.gif&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.lanrentuku.com/images/uppic/0805080010322.gif&quot;&gt;&lt;img alt=&quot;结构良好的CSS代码示例&quot; border=&quot;0&quot; src=&quot;http://www.lanrentuku.com/images/uppic/0805080010322.gif&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;h4&gt;#2. 保持简洁&lt;/h4&gt;&lt;p&gt;保持代码简洁，可以大幅减小CSS文件的大小。&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.lanrentuku.com/images/uppic/0805080010323.gif&quot;&gt;&lt;img alt=&quot;不简洁的CSS代码示例&quot; border=&quot;0&quo