<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>我爱互联网</title>
	
	<link>http://www.woiweb.net</link>
	<description>web开发、web设计、JAVA、CMS、前端、前端技术、前端资源</description>
	<lastBuildDate>Thu, 31 May 2012 08:41:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/woiweb" /><feedburner:info uri="woiweb" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><media:thumbnail url="http://www.woiweb.net/wp-content/themes/Expi/images/logo.png" /><media:keywords>web,设计,开发,web设计,web开发,java,CSS,JavaScript,Ajax,jQuery,UI</media:keywords><itunes:owner><itunes:email>dengjianqiang200@gmail.com</itunes:email><itunes:name>woiweb</itunes:name></itunes:owner><itunes:author>woiweb</itunes:author><itunes:explicit>no</itunes:explicit><itunes:image href="http://www.woiweb.net/wp-content/themes/Expi/images/logo.png" /><itunes:keywords>web,设计,开发,web设计,web开发,java,CSS,JavaScript,Ajax,jQuery,UI</itunes:keywords><itunes:subtitle>我爱web，为您提供最实用的WEB开发组件,开发技术,开发经验,开发技巧等</itunes:subtitle><itunes:summary>web design,development,ui,jquery,javascript,cms</itunes:summary><item>
		<title>iframe异步加载技术及性能</title>
		<link>http://feedproxy.google.com/~r/woiweb/~3/L4Zl18OiJwg/iframe-loading-techniques-performance.html</link>
		<comments>http://www.woiweb.net/iframe-loading-techniques-performance.html#comments</comments>
		<pubDate>Thu, 31 May 2012 08:33:00 +0000</pubDate>
		<dc:creator>dengjianqiang200@gmail.com (woiweb)</dc:creator>
				<category><![CDATA[前端观察]]></category>
		<category><![CDATA[开发经验]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[js]]></category>

		<guid isPermaLink="false">http://www.woiweb.net/?p=2032</guid>
		<description>我们会经常使用iframes来加载第三方的内容、广告或者插件。使用iframe是因为他可以和主页面并行加载，不会阻塞主页面。当然使用iframe也是有利有弊的：Steve Souders在他的blog里面有阐述：Using Iframes Sparingly: iframe会阻塞主页面的onload事件 主页面和iframe共享同一个连接池 阻塞主页面的onload是这两个问题中最影响性能的方面。一般都是想让onload时间越早触发越好，一方面是用户体验过更重要的是google给网站的加载速度的打分：用户可以用IE和FF中Google工具栏来计时。 那么为了提高页面性能，怎样才能不阻塞主页面的onload事件的来加载iframe呢？ 这篇讲了四种加载iframe的方法：普通iframe，onload之后加载iframe，setTimeout() iframe和异步加载iframe。每种方法的加载结果我都用IE8的时间线来展示。我建议多注意下动态异步加载这个方法，因为这是性能表现最佳的。另 外，还有一种友好iframe(friendly iframe)技术。他可能算不上是iframe加载的技术，但是必须使用iframe，他是无阻塞加载的。 普通方法加载iframe 这是一种人尽皆知的普通加载方法，它没有浏览器的兼容性问题。 &amp;#60;iframe src="/path/to/file" frameborder="0" width="728" height="90" scrolling="auto"&amp;#62; &amp;#60;/iframe&amp;#62; 使用这种加载方法会在各浏览器中有如下表现： iframe会在主页面的onload之前加载 iframe会在所有iframe的内容都加载完毕之后触发iframe的onload 主页面的onload会在iframes的onload触发之后触发，所以iframe会阻塞主页面的加载 当iframe在加载的过程中，浏览器的会标识正在加载东西，处于忙碌状态。 这里是一个演示页面，时间线图显示出iframe会阻塞主页面的加载。 我的建议：注意onload阻塞。如果iframe的内容只需要很短的时间来加载和执行，那么也不是个大问题，而且使用这种方法还有个好处是可 以和主页面并行加载。但是如果加载这个iframe需要很长时间，用户体验就很差了。你得自己测试一下然后在 http://www.webpagetest.org/也做些测试，根据onload的时间看看是否需要其他加载方法。 在onload之后加载iframe 如果你想在iframe中加载一些内容，但是这些内容对于页面来说不是那么的重要。或者这些内容不需要马上展现给用户的，需要点击触发之类的。那么可以考虑在主页面载入之后加载iframe。 &amp;#60;script&amp;#62; //doesn't block the load event function createIframe() { var i = document.createElement("iframe"); i.src = "path/to/file"; i.scrolling = "auto"; i.frameborder = "0"; i.width [...]&lt;table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;"&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;推荐阅读：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="Js模拟Ajax无刷新提交" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fjs-iframe-ajax.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-loading-techniques-performance.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/21/11238617.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;Js模拟Ajax无刷新提交&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="IE下因设置document.domain而无法和Iframe通信的解决方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-loading-techniques-performance.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592595.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE下因设置document.domain而无法和Iframe通信的解决方法&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="IE9下创建带name的iframe" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fie9-create-iframe.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-loading-techniques-performance.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/21/11238617.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE9下创建带name的iframe&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="Iframe跨域通信完美解决方案" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-loading-techniques-performance.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592595.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;Iframe跨域通信完美解决方案&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="impress.js使用教程" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fimpress-js-tutorial.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-loading-techniques-performance.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/01/05/13478167.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;impress.js使用教程&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5" align="right"&gt;
            &lt;a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件"&gt;
                &lt;font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;"&gt;无觅&lt;/font&gt;
            &lt;/a&gt;
        &lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/_5lB46uFFhprjbDwkhz6XUO_xuk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_5lB46uFFhprjbDwkhz6XUO_xuk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/_5lB46uFFhprjbDwkhz6XUO_xuk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_5lB46uFFhprjbDwkhz6XUO_xuk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/woiweb/~4/L4Zl18OiJwg" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.woiweb.net/iframe-loading-techniques-performance.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.woiweb.net/iframe-loading-techniques-performance.html</feedburner:origLink></item>
		<item>
		<title>Flash遮盖页面元素的解决方法</title>
		<link>http://feedproxy.google.com/~r/woiweb/~3/aRwCK-R11a8/flash-wmode.html</link>
		<comments>http://www.woiweb.net/flash-wmode.html#comments</comments>
		<pubDate>Wed, 30 May 2012 07:25:15 +0000</pubDate>
		<dc:creator>dengjianqiang200@gmail.com (woiweb)</dc:creator>
				<category><![CDATA[开发经验]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://www.woiweb.net/?p=2028</guid>
		<description>在做web开发中可能会遇到flash遮挡页面中元素的情况，无论怎么设置flash容器和层的深度(z-index)也无济于事，现有的解决方案 是在插入flash的embed或object标签中加入”wmode”属性并设置为wmode=“transparent”或”opaque”，但 wmode属性到底是什么意义，为什么可以解决这个问题呢？ window mode(wmode) wmode即窗口模式总共有三种，看看当年Macromedia官方的说法： Window: Use the Window value to play a Flash Player movie in its own rectangular window on a web page. This is the default value for wmode and it works the way the classic Flash Player works. This normally provides the fastest animation performance. Opaque: By using the Opaque [...]&lt;table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;"&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;推荐阅读：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="30个极其迷人的flash载入页面的设计" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F30-charming-flash-preloader-design.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fflash-wmode.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14595161.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;30个极其迷人的flash载入页面的设计&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="28个Flash页面载入进度效果(Loading)欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F28-flash-page-loading-progress-effects-loading-enjoy.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fflash-wmode.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14595170.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;28个Flash页面载入进度效果(Loading)欣赏&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="40个免费flash相册程序" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F40-free-flash-gallery.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fflash-wmode.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14594316.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;40个免费flash相册程序&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="45个炫酷的3D flash酷站欣赏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F45-cool-3d-flash-site.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fflash-wmode.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592532.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;45个炫酷的3D flash酷站欣赏&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="12网站帮你学习Flash/ActionScript" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F12-websites-to-help-you-learn-flashactionscript.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fflash-wmode.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14595173.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;12网站帮你学习Flash/ActionScript&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
        &lt;br/&gt;
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;来自无觅网络的相关文章：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="Flash真的适合做网站应用吗？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fucd%2F6593.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fflash-wmode.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/17/5773147.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;Flash真的适合做网站应用吗？ (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="Flash广告banner设计要素" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fucd%2F7198.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fflash-wmode.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/05/10/8139557.png" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;Flash广告banner设计要素 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="
				10个让你忘记 Flash 的 HTML5 应用演示
			" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fweb%2F9724.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fflash-wmode.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.yixieshi.com/images/defaultpic.gif" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;
				10个让你忘记 Flash 的 HTML5 应用演示
			 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="BBC表示：Flash在移动设备上的表现远不及HTML5" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fit%2F4835.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fflash-wmode.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.yixieshi.com/images/defaultpic.gif" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;BBC表示：Flash在移动设备上的表现远不及HTML5 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="禹容网络（上海）诚聘 网站UI设计师/FLASH互动设计师/平面设计师" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fhr%2F713.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fflash-wmode.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.yixieshi.com/images/defaultpic.gif" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;禹容网络（上海）诚聘 网站UI设计师/FLASH互动设计师/平面设计师 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5" align="right"&gt;
            &lt;a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件"&gt;
                &lt;font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;"&gt;无觅&lt;/font&gt;
            &lt;/a&gt;
        &lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/2CSSzXma1C80yd5ABD2Obv-nSIw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2CSSzXma1C80yd5ABD2Obv-nSIw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/2CSSzXma1C80yd5ABD2Obv-nSIw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2CSSzXma1C80yd5ABD2Obv-nSIw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/woiweb/~4/aRwCK-R11a8" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.woiweb.net/flash-wmode.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.woiweb.net/flash-wmode.html</feedburner:origLink></item>
		<item>
		<title>10个出色的HTML5画布示例</title>
		<link>http://feedproxy.google.com/~r/woiweb/~3/C7aemsFy_k4/10-exceptional-examples-of-html5-canvas-and-applications.html</link>
		<comments>http://www.woiweb.net/10-exceptional-examples-of-html5-canvas-and-applications.html#comments</comments>
		<pubDate>Tue, 22 May 2012 02:41:05 +0000</pubDate>
		<dc:creator>dengjianqiang200@gmail.com (woiweb)</dc:creator>
				<category><![CDATA[前端观察]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://www.woiweb.net/?p=2009</guid>
		<description>本文收集了一些出色的html5 画布演示。最近网上有很多赏心悦目的html5演示作品，我很高兴能将我所收集到的分享给大家。HTML5的功能越来越强大，占用的处理器甚至比 flash 还少。所以，是否有一天 flash 会被 HTML5 完全取代呢？（查看下面示例，请使用支持HTML5的浏览器。） 1. FishBowl 精美的鱼缸 2. DeviantART muro 轻量级的在线图像编辑器 3. 3D Earth 自转的地球 4. Asteroid Belt 太空中的小行星带 5. Interactive Polaroids 漂亮的相册（看上去就像用偏光板拍摄的） 6. Canvas Cycle: True 8-bit Color Cycling with HTML5 这个作品最为华丽，甚至包含了一套演示——各种天气效果的动画化演示 7. js cloth 三维环境下的二维图像 8. CanvasMol 多种元素的三维份子结构 9. Or so they say…” by xplsv 不错的太空景色 10. 3D Model [...]&lt;table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;"&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;推荐阅读：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="10个不错的CSS3表单教程" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Ftop-10-css-3-forms-tutorials.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-exceptional-examples-of-html5-canvas-and-applications.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/17/23232356.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;10个不错的CSS3表单教程&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="非常有用的HTML5,CSS3的框架" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fuseful-html5css3-frameworks.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-exceptional-examples-of-html5-canvas-and-applications.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/19/23489804.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;非常有用的HTML5,CSS3的框架&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="13个令人惊叹的html5和css3示例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F13-amazing-examples-of-html5-and-css3.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-exceptional-examples-of-html5-canvas-and-applications.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592652.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;13个令人惊叹的html5和css3示例&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="割绳子游戏HTML5版" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fcut-the-rope-of-html5.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-exceptional-examples-of-html5-canvas-and-applications.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/01/11/13796090.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;割绳子游戏HTML5版&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="另外10个很棒的html5、css和javascript效果" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F10-awesome-html5-css-and-javascript-demonstrations.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-exceptional-examples-of-html5-canvas-and-applications.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592652.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;另外10个很棒的html5、css和javascript效果&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
        &lt;br/&gt;
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;来自无觅网络的相关文章：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="前端工作者的福音：HTML5和CSS3" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fucd%2F10520.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-exceptional-examples-of-html5-canvas-and-applications.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/23/17956892.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;前端工作者的福音：HTML5和CSS3 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="
				HTML5和CSS3的终极工具资源集合
			" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fweb%2F9801.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-exceptional-examples-of-html5-canvas-and-applications.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/18/11021087.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;
				HTML5和CSS3的终极工具资源集合
			 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="
				什么是HTML5和CSS3？HTML5和CSS3的新特性
			" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fucd%2F9859.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-exceptional-examples-of-html5-canvas-and-applications.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/28/11603047.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;
				什么是HTML5和CSS3？HTML5和CSS3的新特性
			 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="浅谈HTML5与Web APP" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fucd%2F10628.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-exceptional-examples-of-html5-canvas-and-applications.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/04/11/19198319.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;浅谈HTML5与Web APP (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="
				15个清爽简约风格的 HTML5 网站作品
			" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fweb%2F9462.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-exceptional-examples-of-html5-canvas-and-applications.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/29/8280457.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;
				15个清爽简约风格的 HTML5 网站作品
			 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5" align="right"&gt;
            &lt;a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件"&gt;
                &lt;font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;"&gt;无觅&lt;/font&gt;
            &lt;/a&gt;
        &lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/QkdKo9FVYwaJeUeczKI5Kctiizc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QkdKo9FVYwaJeUeczKI5Kctiizc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/QkdKo9FVYwaJeUeczKI5Kctiizc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QkdKo9FVYwaJeUeczKI5Kctiizc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/woiweb/~4/C7aemsFy_k4" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.woiweb.net/10-exceptional-examples-of-html5-canvas-and-applications.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.woiweb.net/10-exceptional-examples-of-html5-canvas-and-applications.html</feedburner:origLink></item>
		<item>
		<title>IE9下创建带name的iframe</title>
		<link>http://feedproxy.google.com/~r/woiweb/~3/SOf4LikiyzU/ie9-create-iframe.html</link>
		<comments>http://www.woiweb.net/ie9-create-iframe.html#comments</comments>
		<pubDate>Mon, 26 Mar 2012 03:36:00 +0000</pubDate>
		<dc:creator>dengjianqiang200@gmail.com (woiweb)</dc:creator>
				<category><![CDATA[开发经验]]></category>
		<category><![CDATA[IE9]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.woiweb.net/?p=2003</guid>
		<description>前几天在开发SDK时发现用Js模拟Ajax无刷新提交里面的方式，在IE9下创建Iframe会出问题，抛出一个错误： DOM Exception: INVALID_CHARACTER_ERR (5) ，原来IE9下不能用 document.createElement(&amp;#8216;&amp;#60;iframe name=”uploadIframe”&amp;#62;&amp;#8217;);这种方式创建，经调整后将代码修改为： var name = 'test'; var ua = navigator.userAgent.toLowerCase(); var ie = /msie/.test(ua), ie9 = false; if(/msie 9.0/.test(ua)) { ie9 = true } var iframe; if(ie &amp;#38;&amp;#38; !ie9) { iframe = document.createElement('&amp;#60;iframe name=' + name + '/&amp;#62;'); } else { iframe = document.createElement('iframe') } document.body.appendChild(iframe);&lt;table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;"&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;推荐阅读：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="微软发布 IE9平台预览第四版" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fmicrosoft-released-the-fourth-edition-ie9-platform-preview.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fie9-create-iframe.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14593330.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;微软发布 IE9平台预览第四版&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="9个javascript和gif动画解决方案" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F9-javascript-and-animated-gif-loading-animation-solutions.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fie9-create-iframe.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/18/31833758.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;9个javascript和gif动画解决方案&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="IE下因设置document.domain而无法和Iframe通信的解决方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fie9-create-iframe.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592595.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE下因设置document.domain而无法和Iframe通信的解决方法&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="IE下document.getElementById的处理方式" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fie%25E4%25B8%258Bdocument-getelementbyid%25E7%259A%2584%25E5%25A4%2584%25E7%2590%2586%25E6%2596%25B9%25E5%25BC%258F.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fie9-create-iframe.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/26/19026477.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE下document.getElementById的处理方式&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="IE6-7下的调试利器-IE WebDeveloper使用教程" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fie-webdeveloper-tutorail.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fie9-create-iframe.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/05/11938390.png" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE6-7下的调试利器-IE WebDeveloper使用教程&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5" align="right"&gt;
            &lt;a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件"&gt;
                &lt;font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;"&gt;无觅&lt;/font&gt;
            &lt;/a&gt;
        &lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/U-9AltSWqcnKJUJH0HE-VazAZSs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/U-9AltSWqcnKJUJH0HE-VazAZSs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/U-9AltSWqcnKJUJH0HE-VazAZSs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/U-9AltSWqcnKJUJH0HE-VazAZSs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/woiweb/~4/SOf4LikiyzU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.woiweb.net/ie9-create-iframe.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://www.woiweb.net/ie9-create-iframe.html</feedburner:origLink></item>
		<item>
		<title>Iframe跨域通信完美解决方案</title>
		<link>http://feedproxy.google.com/~r/woiweb/~3/tTb4YZUpNAw/iframe-cross-domain.html</link>
		<comments>http://www.woiweb.net/iframe-cross-domain.html#comments</comments>
		<pubDate>Thu, 08 Mar 2012 09:36:51 +0000</pubDate>
		<dc:creator>dengjianqiang200@gmail.com (woiweb)</dc:creator>
				<category><![CDATA[开发经验]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[xd]]></category>
		<category><![CDATA[跨域]]></category>

		<guid isPermaLink="false">http://www.woiweb.net/?p=1998</guid>
		<description>跨域通信这个话题在之前已经提到总结过，关于跨域通信大家可以参考同源策略，跨域资源共享的10种方式以及IE下因设置document.domain而无法和Iframe通信的解决方法。 以前在项目中开发了不少跨域功能，但都比较依赖项目，今天我将跨域功能模块抽出并精简为一个通用的javascript包，它用纯js实现，不依赖于flash，而且已经包含了目前最常用的跨域通信方法：window.postMessage和window.name，大家只需简单引用即可实现单向或双向跨域通信，非常方便。使用方法如下（将下面的代码同时放到要跨域通信的两个页面中）： 引入xd.js &amp;#60;script type='text/javascript' src='http://crossdomain.sinaapp.com/xd/xd.js'&amp;#62;&amp;#60;/script&amp;#62; 添加监听回调函数 var callback = function(data) { //data为返回的json对象 } XD.receiveMessage(callback); 调用跨域通信方法 //target：跨域通信的window对象，parent或iframe.contentWindow //json：要发送的数据对象，json格式，如：{'height':'300px'} XD.sendMessage(target, json); Over 至此，一个双向跨域的功能已经完成了，这个方案有一个小小的缺陷，就是会重写window.name，所以请避免在开发中借用window.name来传递数据。 光看代码可能还不太清晰，来看个demo，给大家个使用比较频繁的示例：iframe高度自适应，如有不明白可留言或@woiweb。 demo下载&lt;table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;"&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;推荐阅读：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="IE下因设置document.domain而无法和Iframe通信的解决方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592595.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE下因设置document.domain而无法和Iframe通信的解决方法&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="高效 JavaScript" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fefficient-javascript.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592595.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;高效 JavaScript&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="同源策略" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fsame-origin-policy.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/02/10/15194636.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;同源策略&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="15款很棒的 JavaScript 开发工具" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F15-best-javascript-develope-tools.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592595.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;15款很棒的 JavaScript 开发工具&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="9个javascript和gif动画解决方案" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F9-javascript-and-animated-gif-loading-animation-solutions.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/18/31833758.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;9个javascript和gif动画解决方案&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
        &lt;br/&gt;
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;来自无觅网络的相关文章：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="
				卖给用户的是解决方案 而不是功能
			" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fucd%2F9642.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/10/26/9830067.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;
				卖给用户的是解决方案 而不是功能
			 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="8个惊艳的 HTML5 和 JavaScript 特效" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fplus%2Fview.php%3Faid%3D8718&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/11/22226522.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;8个惊艳的 HTML5 和 JavaScript 特效 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="卡巴斯基手机版产品获誉理想安全解决方案" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fit%2F4904.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.yixieshi.com/images/defaultpic.gif" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;卡巴斯基手机版产品获誉理想安全解决方案 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="推荐给开发者10款超级有用的JavaScript工具" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fweb%2F9936.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/08/12059617.png" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;推荐给开发者10款超级有用的JavaScript工具 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="HTML 5 和 JavaScript实现的红白机经典游戏《打野鸭》" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fweb%2F9712.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/04/10293453.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;HTML 5 和 JavaScript实现的红白机经典游戏《打野鸭》 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5" align="right"&gt;
            &lt;a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件"&gt;
                &lt;font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;"&gt;无觅&lt;/font&gt;
            &lt;/a&gt;
        &lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/R0tCqBy_2cY6tSrcAVgpHPBh0YA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/R0tCqBy_2cY6tSrcAVgpHPBh0YA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/R0tCqBy_2cY6tSrcAVgpHPBh0YA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/R0tCqBy_2cY6tSrcAVgpHPBh0YA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/woiweb/~4/tTb4YZUpNAw" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.woiweb.net/iframe-cross-domain.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.woiweb.net/iframe-cross-domain.html</feedburner:origLink></item>
		<item>
		<title>10 个华丽的 CSS3 设计教程</title>
		<link>http://feedproxy.google.com/~r/woiweb/~3/N6oeUx19Wvc/10-superb-css3-tutorials-awesome-design.html</link>
		<comments>http://www.woiweb.net/10-superb-css3-tutorials-awesome-design.html#comments</comments>
		<pubDate>Thu, 08 Mar 2012 07:58:21 +0000</pubDate>
		<dc:creator>dengjianqiang200@gmail.com (woiweb)</dc:creator>
				<category><![CDATA[Html & Css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[toturials]]></category>

		<guid isPermaLink="false">http://www.woiweb.net/?p=1981</guid>
		<description>网页设计师们普遍认为在网站设计方面，css3拥有令人难以置信的潜力，但目前过多的限制导致它还未被广泛应用。 这篇文章介绍了10个css3设计教程，帮助你熟练运用CSS3的一些新增功能。由于浏览器对CSS3的支持问题，部分教程的效果仅支持在Chrome、Safari、Firefox等现代浏览器上查看。 1. 个人技能动画演示 本教程教你使用CSS3来打造动画形式的个人技能说明，颜色和字体可按个人喜好设置。 源码 / 演示 2. 反向动画 用CSS3/jquery创建反向动画的教程（支持Firefox、Safari和Chrome）。 源码 / 演示 3. 碳纤维风格登录表单 使用渐进增强来设计表单，即使没有javascript和css的支持，该表单也能正常使用。该表单还使用了Ajax和jQuery来实现输入验证。 源码 / 演示 4. BounceBox 通知插件 该教程实现的是弹出效果，你可以添加CSS规则来设置弹出框的位置，也可以通过CSS代码来设计弹出框的样式。 源码 / 演示 5．气泡动画按钮 有了这个按钮包，再借助CSS3，你只需指定一个类名，就可以将网站上的任何链接变为气泡按钮。有四种颜色主题和三种尺寸可选。 源码 / 演示 6. 下拉选择框 用CSS3和jQuery建立一个功能齐全且美观的下拉选择框。 源码 / 演示 7. 关于页面 在本教程中，我们将使用PHP、html5和CSS3创建一个简单的关于页面，该页面会向用户呈现你的联系方式，还有一个下载电子名片的选项。 源码 / 演示 8. 有趣的CSS3效果：旋转的报纸 这个经典的效果可用CSS3来实现，Firefox、Chrome和Safari均支持这个效果。 源码 / 演示 9. 闪亮的旋钮控件 在本教程中，我们将用jQuery插件创建一个闪亮的旋钮控件——KnobKnob，这个插件使用CSS3转换和jQuery新的事件处理方法来和用户进行交互——点击按钮然后旋转可以调节显示效果。 源码 / [...]&lt;table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;"&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;推荐阅读：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="常用CSS3动画效果合集-animate.css" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fcss3-animate-collection.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-superb-css3-tutorials-awesome-design.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/17/23232356.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;常用CSS3动画效果合集-animate.css&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="10款令人难以相信的CSS3绘图效果" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F10-incredible-css3-drawing-you-must-see.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-superb-css3-tutorials-awesome-design.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/01/26911357.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;10款令人难以相信的CSS3绘图效果&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="18个明亮型纯CSS的绘图示例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F18-brilliant-pure-css-drawings.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-superb-css3-tutorials-awesome-design.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592627.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;18个明亮型纯CSS的绘图示例&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="非常有用的HTML5,CSS3的框架" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fuseful-html5css3-frameworks.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-superb-css3-tutorials-awesome-design.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/19/23489804.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;非常有用的HTML5,CSS3的框架&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="10个不错的CSS3表单教程" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Ftop-10-css-3-forms-tutorials.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-superb-css3-tutorials-awesome-design.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/17/23232356.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;10个不错的CSS3表单教程&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
        &lt;br/&gt;
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;来自无觅网络的相关文章：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="新浪微博CSS3适用细节初探" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fucd%2F10354.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-superb-css3-tutorials-awesome-design.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/02/28/16209758.png" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;新浪微博CSS3适用细节初探 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="前端工作者的福音：HTML5和CSS3" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fucd%2F10520.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-superb-css3-tutorials-awesome-design.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/03/23/17956892.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;前端工作者的福音：HTML5和CSS3 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="
				什么是HTML5和CSS3？HTML5和CSS3的新特性
			" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fucd%2F9859.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-superb-css3-tutorials-awesome-design.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/28/11603047.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;
				什么是HTML5和CSS3？HTML5和CSS3的新特性
			 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="
				HTML5和CSS3的终极工具资源集合
			" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fweb%2F9801.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-superb-css3-tutorials-awesome-design.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/18/11021087.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;
				HTML5和CSS3的终极工具资源集合
			 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="超平面的触觉设计" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fucd%2F10912.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2F10-superb-css3-tutorials-awesome-design.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/30/28490800.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;超平面的触觉设计 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5" align="right"&gt;
            &lt;a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件"&gt;
                &lt;font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;"&gt;无觅&lt;/font&gt;
            &lt;/a&gt;
        &lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/yDyQnvxVT3uHKK3RBetIrW56O5s/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yDyQnvxVT3uHKK3RBetIrW56O5s/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/yDyQnvxVT3uHKK3RBetIrW56O5s/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yDyQnvxVT3uHKK3RBetIrW56O5s/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/woiweb/~4/N6oeUx19Wvc" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.woiweb.net/10-superb-css3-tutorials-awesome-design.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.woiweb.net/10-superb-css3-tutorials-awesome-design.html</feedburner:origLink></item>
		<item>
		<title>DD_belatedPNG让IE6支持PNG透明图片</title>
		<link>http://feedproxy.google.com/~r/woiweb/~3/QjdCi6bKpLA/dd_belatedpng-tutorials.html</link>
		<comments>http://www.woiweb.net/dd_belatedpng-tutorials.html#comments</comments>
		<pubDate>Tue, 14 Feb 2012 02:28:36 +0000</pubDate>
		<dc:creator>dengjianqiang200@gmail.com (woiweb)</dc:creator>
				<category><![CDATA[前端工具]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[png]]></category>

		<guid isPermaLink="false">http://www.woiweb.net/?p=1958</guid>
		<description>IE6不支持透明的PNG图片，而PNG图片在Web设计方面表现力上，具有其它图形格式所达不到的效果，IE6这一致命缺陷极大地限制了Web 设计的创意发挥。虽然解决IE6的透明PNG的方法也很多，从使用IE特有的滤镜或是e­xpression，再到javascript+透明 GIF替代.但是这些方法都有一个缺点，就是不支持css中backgrond-position与background-repeat属性。 而使用 DD_belatedPNG.js可完美的解决IE6下PNG图片透明问题，并且支持backgrond-position与background- repeat。这是其他方法所不具备的，同时DD_belatedPNG还支持a:hover属性,以及&amp;#60;img&amp;#62;。我们的网站就加入了 DD_belatedPNG处理导航PNG透明图片，使其在不同浏览器下保持相同的外观。 使用方法： 首先下载JS文件 0.0.8a.js (未压缩版本) 0.0.8a-min.js (压缩版) 之后在页面中引用代码： &amp;#60;!–[if IE 6]&amp;#62; &amp;#60;script type=”text/javascript” src=”下载下来的JS路径”&amp;#62;&amp;#60;/script&amp;#62; &amp;#60;script&amp;#62; DD_belatedPNG.fix(‘CSS选择器, 应用类型’); &amp;#60;/script&amp;#62; &amp;#60;![endif]–&amp;#62; 引用函数是 DD_belatedPNG.fix() , 括号里分别填写应用PNG的CSS选择器（可使用ID选择器和类选择器）和应用类型（分为img和background两种）。 如DD_belatedPNG.fix(‘#box-one, img’) 或者 DD_belatedPNG.fix(‘.header, background’) 等。 这些可以简写成 DD_belatedPNG.fix(‘#box-one, .header, img,background’);  。 更多选择器的如 DD_belatedPNG.fix(‘#box-one, .header,#footer,.box-two a:hover, img,background’);  等等。 另外，为解决IE6下背景图闪烁，可以在页面中添加如下脚本 &amp;#60;!–[if IE 6]&amp;#62; &amp;#60;script type=”text/javascript”&amp;#62; // &amp;#60;![CDATA[ if((window.navigator.appName.toUpperCase().indexOf("MICROSOFT")&amp;#62;=0)&amp;#38;&amp;#38;(document.execCommand)) [...]&lt;table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;"&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;推荐阅读：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="IE6-7下的调试利器-IE WebDeveloper使用教程" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fie-webdeveloper-tutorail.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fdd_belatedpng-tutorials.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/05/11938390.png" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE6-7下的调试利器-IE WebDeveloper使用教程&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="IE9下创建带name的iframe" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fie9-create-iframe.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fdd_belatedpng-tutorials.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/21/11238617.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE9下创建带name的iframe&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="IE下document.getElementById的处理方式" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fie%25E4%25B8%258Bdocument-getelementbyid%25E7%259A%2584%25E5%25A4%2584%25E7%2590%2586%25E6%2596%25B9%25E5%25BC%258F.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fdd_belatedpng-tutorials.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/26/19026477.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE下document.getElementById的处理方式&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="微软发布 IE9平台预览第四版" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fmicrosoft-released-the-fourth-edition-ie9-platform-preview.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fdd_belatedpng-tutorials.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14593330.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;微软发布 IE9平台预览第四版&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="IE下因设置document.domain而无法和Iframe通信的解决方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fdd_belatedpng-tutorials.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592595.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE下因设置document.domain而无法和Iframe通信的解决方法&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5" align="right"&gt;
            &lt;a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件"&gt;
                &lt;font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;"&gt;无觅&lt;/font&gt;
            &lt;/a&gt;
        &lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/kNwu7LAh4njw7CHENKUiwsiYTg8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kNwu7LAh4njw7CHENKUiwsiYTg8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/kNwu7LAh4njw7CHENKUiwsiYTg8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kNwu7LAh4njw7CHENKUiwsiYTg8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/woiweb/~4/QjdCi6bKpLA" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.woiweb.net/dd_belatedpng-tutorials.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.woiweb.net/dd_belatedpng-tutorials.html</feedburner:origLink></item>
		<item>
		<title>同源策略</title>
		<link>http://feedproxy.google.com/~r/woiweb/~3/oZAmkBR6XdM/same-origin-policy.html</link>
		<comments>http://www.woiweb.net/same-origin-policy.html#comments</comments>
		<pubDate>Fri, 10 Feb 2012 08:56:09 +0000</pubDate>
		<dc:creator>dengjianqiang200@gmail.com (woiweb)</dc:creator>
				<category><![CDATA[开发经验]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[跨域]]></category>

		<guid isPermaLink="false">http://www.woiweb.net/?p=1949</guid>
		<description>受同源策略限制，javascript不能跨域!　这里提到了同源策略，那么什么是同源策略呢？ 同源策略(Same Origin Policy)，它是由Netscape提出的一个著名的安全策略。 现在所有支持javascript 的浏览器都会使用这个策略。同源策略阻止从一个域上加载的脚本去获取或操作另一个域上的文档属性。也就是说，受到请求的 URL 的域必须与当前 Web 页面的域相同。这说明浏览器隔离来自不同源的内容，以防止它们之间的操作。 为何要使用同源策略？ 答案：安全！ 一个简单的例子：比如一个黑客，他利用Iframe把真正的银行登录页面嵌到他的页面上，当你使用真实的用户名，密码登录时，他的页面就可以通过Javascript读取到你的表单中input中的内容，这样用户名，密码就轻松到手了。后果会非常严重！ 那么什么才是同源？ 所谓同源是指域名，协议，端口均相同。 同源的几种情况： 1.不同域名属于跨域，如：www.a.com和www.b.com，另外www.a.com 和www.a.com.cn 也属于不同域名。 2.主域名和子域名（二级域名、三级域名等）跨域，如：www.a.com 和 sub.a.com 属于跨域，sub.a.com 和 sub1.a.com 之间也是跨域。 3.不同协议属于跨域，如：http://www.a.com 和 https://www.a.com。 4.不同端口，如： www.a.com:80和 www.a.com:81 。 5.IP和域名属于跨域，如：123.125.106.16 和 www.weibo.com。&lt;table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;"&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;推荐阅读：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="Iframe跨域通信完美解决方案" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fsame-origin-policy.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592595.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;Iframe跨域通信完美解决方案&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="IE下因设置document.domain而无法和Iframe通信的解决方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fsame-origin-policy.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592595.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE下因设置document.domain而无法和Iframe通信的解决方法&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="15款很棒的 JavaScript 开发工具" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F15-best-javascript-develope-tools.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fsame-origin-policy.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592595.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;15款很棒的 JavaScript 开发工具&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="10个对JavaScript开发者超级有用的工具" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F10-super-useful-tools-for-javascript-developers.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fsame-origin-policy.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/26/19026477.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;10个对JavaScript开发者超级有用的工具&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="10令人上瘾的用Javascript开发的游戏" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F10-addictive-games-made-with-javascript.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fsame-origin-policy.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/22/33105819.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;10令人上瘾的用Javascript开发的游戏&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
        &lt;br/&gt;
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;来自无觅网络的相关文章：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="8个惊艳的 HTML5 和 JavaScript 特效" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fplus%2Fview.php%3Faid%3D8718&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fsame-origin-policy.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/11/22226522.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;8个惊艳的 HTML5 和 JavaScript 特效 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="谷歌全球营销副总：按国情决定营销策略" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fit%2F979.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fsame-origin-policy.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/30/7131972.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;谷歌全球营销副总：按国情决定营销策略 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="HTML 5 和 JavaScript实现的红白机经典游戏《打野鸭》" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fweb%2F9712.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fsame-origin-policy.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/04/10293453.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;HTML 5 和 JavaScript实现的红白机经典游戏《打野鸭》 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="推荐给开发者10款超级有用的JavaScript工具" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fweb%2F9936.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fsame-origin-policy.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/08/12059617.png" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;推荐给开发者10款超级有用的JavaScript工具 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="“超级网银”重庆11月上线 市民跨行转账一分钟搞定" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fb2b%2F4732.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fsame-origin-policy.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://www.yixieshi.com/images/defaultpic.gif" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;“超级网银”重庆11月上线 市民跨行转账一分钟搞定 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5" align="right"&gt;
            &lt;a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件"&gt;
                &lt;font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;"&gt;无觅&lt;/font&gt;
            &lt;/a&gt;
        &lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/NB4nAIRKNjcu1vAt1i_BspbbRcE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NB4nAIRKNjcu1vAt1i_BspbbRcE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/NB4nAIRKNjcu1vAt1i_BspbbRcE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NB4nAIRKNjcu1vAt1i_BspbbRcE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/woiweb/~4/oZAmkBR6XdM" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.woiweb.net/same-origin-policy.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.woiweb.net/same-origin-policy.html</feedburner:origLink></item>
		<item>
		<title>IE下因设置document.domain而无法和Iframe通信的解决方法</title>
		<link>http://feedproxy.google.com/~r/woiweb/~3/sZ_8hlQ6P9g/communicate-with-iframe-in-ie.html</link>
		<comments>http://www.woiweb.net/communicate-with-iframe-in-ie.html#comments</comments>
		<pubDate>Fri, 10 Feb 2012 02:53:31 +0000</pubDate>
		<dc:creator>dengjianqiang200@gmail.com (woiweb)</dc:creator>
				<category><![CDATA[开发经验]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[跨域]]></category>

		<guid isPermaLink="false">http://www.woiweb.net/?p=1940</guid>
		<description>最近在开发SDK的过程中发现IE下有个很怪异的问题：在同一域下，因在父页面上设置了document.domain，而导致无法正常和Iframe（也是同域下）进行通信，IE下抛出的错误是：SCRIPT5: 拒绝访问，导致无法操作iframe中的内容。 经过查阅了很多资料后发现IE下，在父页面或在iframe页面中，只要设置了document.domain，无论是和当前域名相同还是根域名，均视为跨域，所以才会出现拒绝访问的错误，即使你这样写document.domain=document.domain；虽然好像没人这么干。 那么如何才能解决这个问题，让父页面和iframe页面正常通信呢，根据同源策略，让双方均设置同样的domain就可以达到目的。 比如页面A是http://www.a.com/a.html ，页面B是http://www.a.com/b.html， 这时候两个页面中都写上document.domain=”aaa.com”，这样两个页面就可以交互了。 但是，上面的情况只适用于嵌入的页面是事先已经已&amp;#60;iframe src=”http://www.a.com/b.html”&amp;#62;&amp;#60;/iframe&amp;#62;的形式在页面中写好了，而如果是在页面中动态创建的iframe标签再指定其src为http://www.a.com/b.html，上面的方法就不适用 了。 此种情况及解决方法请直接参考原著：IE下Iframe的 document.domain的怪异问题 上面的这种情况是当Iframe的src不为空，即存在实际的引用页面的解决方法。但如果需要创建一个空白的iframe（即src不指定），还要想拿到iframe里的document对象呢？看个例子： //访问地址：http://www.a.com/a.html &amp;#60;html&amp;#62; &amp;#60;head&amp;#62; &amp;#60;title&amp;#62;Iframe&amp;#60;/title&amp;#62; &amp;#60;/head&amp;#62; &amp;#60;body&amp;#62; &amp;#60;script type="text/javascript"&amp;#62; document.domain = 'a.com'; var iframe = document.createElement("iframe"); document.body.appendChild(iframe); iframe.onload = function() { console.log(iframe.contentWindow.document.location) } &amp;#60;/script&amp;#62; &amp;#60;/body&amp;#62; &amp;#60;/html&amp;#62; 有人想到设置iframe里面的domain，思路正确，但由于父页面已经设置了domain，在父页面中根本无法获取到空白iframe的document对象，也就无法设置iframe的domain。 后来经过了很多尝试，也研究了twitter的SDK的代码，找到了解决方案： 通过设置iframe的src来执行一段JS代码，如下， iframe.src = "javascript:void((function(){document.open();document.domain='"+ document.domain + "';document.close()})())"; 通过这种方式就可以改写iframe里面的domain了，这和在浏览器地址栏里输入这段代码的功效一样，这种方式像是旁门左道，但是这确实奏效了。 于是上面的代码更改为： //访问地址：http://www.a.com/a.html &amp;#60;html&amp;#62; &amp;#60;head&amp;#62; &amp;#60;title&amp;#62;Iframe&amp;#60;/title&amp;#62; &amp;#60;/head&amp;#62; &amp;#60;body&amp;#62; [...]&lt;table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;"&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;推荐阅读：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="Iframe跨域通信完美解决方案" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fiframe-cross-domain.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592595.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;Iframe跨域通信完美解决方案&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="IE9下创建带name的iframe" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fie9-create-iframe.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/21/11238617.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE9下创建带name的iframe&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="Js模拟Ajax无刷新提交" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fjs-iframe-ajax.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/21/11238617.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;Js模拟Ajax无刷新提交&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="跨域资源共享的10种方式" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F10-cross-domain-methods.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592595.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;跨域资源共享的10种方式&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="IE下document.getElementById的处理方式" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fie-document-getelementbyid-bug.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/26/19026477.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;IE下document.getElementById的处理方式&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
        &lt;br/&gt;
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;来自无觅网络的相关文章：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="推荐给开发者10款超级有用的JavaScript工具" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fweb%2F9936.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/08/12059617.png" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;推荐给开发者10款超级有用的JavaScript工具 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="HTML 5 和 JavaScript实现的红白机经典游戏《打野鸭》" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fweb%2F9712.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/11/04/10293453.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;HTML 5 和 JavaScript实现的红白机经典游戏《打野鸭》 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="在cPanel建立WordPress时关于域名绑定的问题" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.wpcourse.com%2Fdomain-add-on.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/26/14434546.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;在cPanel建立WordPress时关于域名绑定的问题 (@wpcourse)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="8个惊艳的 HTML5 和 JavaScript 特效" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fweb%2F8718.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/11/22226522.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;8个惊艳的 HTML5 和 JavaScript 特效 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="
				2011回顾：20个将JavaScript推到极致的网站
			" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.yixieshi.com%2Fweb%2F10091.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcommunicate-with-iframe-in-ie.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/30/13231082.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;
				2011回顾：20个将JavaScript推到极致的网站
			 (@yixieshi)&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5" align="right"&gt;
            &lt;a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件"&gt;
                &lt;font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;"&gt;无觅&lt;/font&gt;
            &lt;/a&gt;
        &lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Pxs9VIPZ28E-Z5zkWgir-PpC_-g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Pxs9VIPZ28E-Z5zkWgir-PpC_-g/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Pxs9VIPZ28E-Z5zkWgir-PpC_-g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Pxs9VIPZ28E-Z5zkWgir-PpC_-g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/woiweb/~4/sZ_8hlQ6P9g" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.woiweb.net/communicate-with-iframe-in-ie.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.woiweb.net/communicate-with-iframe-in-ie.html</feedburner:origLink></item>
		<item>
		<title>割绳子游戏HTML5版</title>
		<link>http://feedproxy.google.com/~r/woiweb/~3/kvot4lDU00o/cut-the-rope-of-html5.html</link>
		<comments>http://www.woiweb.net/cut-the-rope-of-html5.html#comments</comments>
		<pubDate>Wed, 11 Jan 2012 03:13:20 +0000</pubDate>
		<dc:creator>dengjianqiang200@gmail.com (woiweb)</dc:creator>
				<category><![CDATA[前端观察]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://www.woiweb.net/?p=1928</guid>
		<description>在拉斯维加斯正在举行的CES大会上，微软CEO鲍尔默宣布了基于IE9和html 5框架的割绳子游戏，由微软及游戏开发商ZeptoLab共同推出，用于促进IE9的使用及网页的美化，网页版点击这里。 游戏主角就是一个贪吃的小绿怪兽，必须通过割绳子来将糖果送到小怪物嘴里，并搜集星星来增加得分。到目前为止，下载量已经超过6000万，潜力足以和《愤怒的小鸟》媲美。 虽然基于IE9，但游戏可在任何兼容html5的浏览器上玩儿。回顾小家伙贪吃的发展史，2010登陆iOS，去年六月登陆Android，如今又推出html 5网页版，不过是否能胜过其本地应用还有待考证。 新版结合Windows 7操作系统，画面和其它版本应用没什么差别，但是可以将游戏添加到Window 7的任务栏当中，新的无锁通关功能是以往版本都不具备的，同时整合Facebook及Twitter，玩家可以将得分晒给朋友或粉丝。 英国IE开发组领导Hegerty说：“HTML 5真是个好东西，可以让东西一下变得更具价值，画面丰富，漂亮，游戏只是一个部分，其他还有电影，音乐等，这是今后的一个方向。我们一直在寻找新的优秀方法，为IE9用户带来意想不到的html5体验”。 赶紧试试吧，游戏地址：http://www.cuttherope.ie/ 转自：http://www.leiphone.com/html5-cut-rope.html&lt;table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;"&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5"&gt;&lt;b&gt;&lt;font size="-1"  style="display: block !important; padding: 20px 0 5px !important;"&gt;推荐阅读：&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
    &lt;/tr&gt;
    
        &lt;tr&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;"&gt;
                    &lt;a target="_blank" title="10个出色的HTML5画布示例" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F10-exceptional-examples-of-html5-canvas-and-applications.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcut-the-rope-of-html5.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2012/05/22/27309238.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;10个出色的HTML5画布示例&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="开始学习HTML5所需要的技巧和工具" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Ftrick-and-tools-for-start-study-html5.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcut-the-rope-of-html5.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592614.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;开始学习HTML5所需要的技巧和工具&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="30多个资源帮你学习HTML5" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2F30-resources-to-learn-html5.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcut-the-rope-of-html5.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/27/14592647.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;30多个资源帮你学习HTML5&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="非常有用的HTML5,CSS3的框架" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fuseful-html5css3-frameworks.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcut-the-rope-of-html5.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/19/23489804.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;非常有用的HTML5,CSS3的框架&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
                &lt;td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;"&gt;
                    &lt;a target="_blank" title="15款强大的HTML5素描及绘图工具" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect?url=http%3A%2F%2Fwww.woiweb.net%2Fhtml5-sketching-tools-every-designers-must-know.html&amp;from=http%3A%2F%2Fwww.woiweb.net%2Fcut-the-rope-of-html5.html"&gt;
                        &lt;img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/12/09/12114063.jpg" width="96px" height="96px" /&gt;&lt;br /&gt;
                        &lt;font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;"&gt;15款强大的HTML5素描及绘图工具&lt;/font&gt;
                    &lt;/a&gt;
                &lt;/td&gt;
        &lt;/tr&gt;
    
    &lt;tr&gt;
        &lt;td colspan="5" align="right"&gt;
            &lt;a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems" target="_blank" title="无觅相关文章插件"&gt;
                &lt;font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;"&gt;无觅&lt;/font&gt;
            &lt;/a&gt;
        &lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/IXvK1m4weMROLve2tF0U8gsaZaI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/IXvK1m4weMROLve2tF0U8gsaZaI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/IXvK1m4weMROLve2tF0U8gsaZaI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/IXvK1m4weMROLve2tF0U8gsaZaI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/woiweb/~4/kvot4lDU00o" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.woiweb.net/cut-the-rope-of-html5.html/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		<feedburner:origLink>http://www.woiweb.net/cut-the-rope-of-html5.html</feedburner:origLink></item>
	<media:credit role="author">woiweb</media:credit><media:rating>nonadult</media:rating><media:description type="plain">我爱web，为您提供最实用的WEB开发组件,开发技术,开发经验,开发技巧等</media:description></channel>
</rss>

