<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dansion&#039;s 日志 &#187; ie</title>
	<atom:link href="http://www.dansion.com/blog/tag/ie/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dansion.com/blog</link>
	<description>学无止境～～～～～～～</description>
	<lastBuildDate>Thu, 29 Sep 2011 09:25:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>让ie支持DOM2事件模型写法</title>
		<link>http://www.dansion.com/blog/javascript/ie-dom2.html</link>
		<comments>http://www.dansion.com/blog/javascript/ie-dom2.html#comments</comments>
		<pubDate>Tue, 09 Jun 2009 16:41:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[js]]></category>

		<guid isPermaLink="false">http://www.dansion.com/blog/?p=782</guid>
		<description><![CDATA[这几天要用js做点东西，又不用现成的框架。
习惯了as3的语法，对ie的window.evnet事件机制忒不习惯。敲了一些代码，让ie8支持dom2事件模型,当然只是泡冒模型。
function $(s){
if(window.container==undefined){
window.container=new Object();//空器，让每个$(&#8221;id&#8221;)同一id得到是同一个
}
if(window.container[s]==undefined){
obj=document.getElementById(s);
window.container[s]=obj;
if(getBrowser(&#8221;MSIE&#8221;)){
obj.eventListeners=new Array();  //事件列表容器
obj.addEvent=function(action,obj,bubble,fun){//委托处理事件
var delegate=function(){
window.event.cancelBubble=bubble;
//丢出事件
var evt=new Event(action,window.event.srcElement,obj,bubble);
if(action==&#8221;onmouseover&#8221;){
evt.relatedTarget=window.event.fromElement;
}else if(action==&#8221;onmouseout&#8221;){
evt.relatedTarget=window.event.toElement;
}
evt.clientX=window.event.clientX;
evt.clientY=window.event.clientY;
evt.screenX=window.event.screenX;
evt.screenY=window.event.screenX;
fun(evt);
}
obj.eventListeners.push({func:fun,delegateFunc:delegate});
return delegate;
}
obj.addEventListener=function(action,fun,bubble){//给对象增加addEventListener方法
action=&#8221;on&#8221;+action;
obj.attachEvent(action,obj.addEvent(action,obj,bubble,fun));
}
obj.removeEventListener=function(action,fun,bubble){//给对象增加removeEventListener方法
for(var i=0;i&#60;obj.eventListeners.length;i++){
if(obj.eventListeners[i].func==fun){
action=&#8221;on&#8221;+action;
obj.detachEvent(action,obj.eventListeners[i].delegateFunc);
}
}
}
return obj;
}else{
//非IE浏览器，只测了FF,google的
var obj=document.getElementById(s);
obj.contains=function(tgt){//contains方法很实用，flash as里也有，就给添加一个。
while(tgt!=null&#38;&#38;typeof(tgt.tagName)!=&#8221;undefind&#8221;){
if(tgt==this){return true};
tgt=tgt.parentNode;
}
return false;
}
return obj;
}
}else{
return window.container[s];
}
}
//判断是否是指定浏览器
function getBrowser(browserType){
var browser=navigator.userAgent;
if (browser.indexOf(browserType)&#62;0){
return true;
}
}
//事件&#8221;类&#8221;
function Event(type,target,currentTarget,bubble){
this.currentTarget=currentTarget;
this.type=type;
this.target=target;
this.bubble=bubble;
this.toString=function(){
return &#8220;[Event type="+type+" bubble="+bubble+" target:"+target.name+" currentTarget="+currentTarget.name+"]&#8220;;
}
}
先这样了，有空再优化扩展一下。
应用例子：
$(&#8221;div1&#8243;).addEventListener(&#8221;mouseover&#8221;,eventover,false);
$(&#8221;div1&#8243;).addEventListener(&#8221;mouseout&#8221;,eventout,false);
function eventover(e){
if(!e.currentTarget.contains(e.relatedTarget)){
alert(&#8221;in&#8221;);
}
}
function eventout(e){
if(!e.currentTarget.contains(e.relatedTarget)){
alert(&#8221;out&#8221;);
}
}
function cancel(){
$(&#8221;div1&#8243;).removeEventListener(&#8217;mouseout&#8217;,eventout,false);
$(&#8221;div1&#8243;).removeEventListener(&#8217;mouseover&#8217;,eventover,false);
}
]]></description>
		<wfw:commentRss>http://www.dansion.com/blog/javascript/ie-dom2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>又一个可用的CSS HACK</title>
		<link>http://www.dansion.com/blog/xhtmlcss/csshack.html</link>
		<comments>http://www.dansion.com/blog/xhtmlcss/csshack.html#comments</comments>
		<pubDate>Tue, 07 Apr 2009 22:55:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[xhtml+css]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie8]]></category>

		<guid isPermaLink="false">http://www.dansion.com/blog/?p=112</guid>
		<description><![CDATA[长时间写AS代码之后，养成良好习惯，每行代码结束随手输入&#8221;;&#8221;,无意中在在整CSS时也顺便在&#8221;}&#8221;之后敲了个&#8221;;&#8221;,变态是整个CSS文件也仅仅只是多敲了这么一个.于是乎在firefox,chorm,opera测试页面时无论如何也不能和IE一致。经过一番&#8230;&#8230;
IE7,IE6包括IE5.5都支持 样式结束之后&#8221;;&#8221;号码,IE8以及firefox,chorm,opera在解晰CSS会让&#8221;;&#8221;号之后的单个样式类无效．
.classA{color:#f00;}/*IE8,firefox,chorm,opera*/
;.classA{color:#000;}/*IE7,IE6,IE5.5*/
这种方式在CSS测试中不能给在&#8221;;&#8221;增加注释代码．
.classA{color:#f00;}/*IE8,firefox,chorm,opera*/
{};.classA{color:#000;}/*IE7,IE6,IE5.5*/
虽然方式在开发中不值的推荐，但对一些原来网站要做IE8,firefox,chorm,opera做兼容性调整，在CSS中完全可以在原来的CSS前面再增加一个同名的样式类来设定对IE8,firefox,chorm,opera的支又不影响原来IE7或之前版本的。看来这样hack还是有一定价值的。
.classA{};classA{}
]]></description>
		<wfw:commentRss>http://www.dansion.com/blog/xhtmlcss/csshack.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE中 命名锚记 和FLASH的问题！</title>
		<link>http://www.dansion.com/blog/xhtmlcss/ie-anchor-flash.html</link>
		<comments>http://www.dansion.com/blog/xhtmlcss/ie-anchor-flash.html#comments</comments>
		<pubDate>Fri, 28 Mar 2008 10:05:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[xhtml+css]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[ie]]></category>

		<guid isPermaLink="false">http://www.dansion.com/blog/archives/41</guid>
		<description><![CDATA[当一个html页面用了锚记#去定位页面位置后，如果页面还包括FLASH，当用户已触发一次锚写后，再点击FLASH，会将该页的标题栏变成锚记的内容，IE6与IE7都有这个问题。测试方法：随便找一个有FLASH的网页，在URL后加上一个#号，再点击FLASH，标题将变成#.
]]></description>
		<wfw:commentRss>http://www.dansion.com/blog/xhtmlcss/ie-anchor-flash.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 8测式版出来了</title>
		<link>http://www.dansion.com/blog/xhtmlcss/internet-explorer8-bate.html</link>
		<comments>http://www.dansion.com/blog/xhtmlcss/internet-explorer8-bate.html#comments</comments>
		<pubDate>Thu, 06 Mar 2008 14:35:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[xhtml+css]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[ie8]]></category>

		<guid isPermaLink="false">http://www.dansion.com/blog/archives/37</guid>
		<description><![CDATA[IE8终于出来了!完装后重启,IE7和IE8模式可以并存.官方地址http://www.microsoft.com/windows/products/winfamily/ie/ie8/getitnow.mspx做了简单测试.新问题图片标签没有设定长宽的情况下，设定float:left;图片会消失。对网站文本进行选取，出现文字不可见。html标签在不设高度情况，如果汉字行高设为奇数，会使外html标签增高一像素。不支list-style-image；奇怪了。改进从IE7开始大部份标签开始支持伪类:hover,现在IE8开始支持伪类:focus;(复选框不支持);继续测试中&#8230;..
]]></description>
		<wfw:commentRss>http://www.dansion.com/blog/xhtmlcss/internet-explorer8-bate.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE中z-index层叠失效</title>
		<link>http://www.dansion.com/blog/xhtmlcss/z-index-for-ie.html</link>
		<comments>http://www.dansion.com/blog/xhtmlcss/z-index-for-ie.html#comments</comments>
		<pubDate>Mon, 03 Mar 2008 15:34:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[xhtml+css]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[z-index]]></category>

		<guid isPermaLink="false">http://www.dansion.com/blog/archives/36</guid>
		<description><![CDATA[最近在制作HTML页面,很多两列的地方需要一侧因定宽度,另一侧自适应宽度.当需要一个下拉菜单效果时,无论把z-index的值设为多高,菜单的DIV始终不在页面最顶层.HTML
&#60;div&#160;class=&#34;a&#34;&#62;a&#160;&#60;div&#160;class=&#34;menu&#34;&#62;sub&#160;a&#60;/div&#62;&#60;/div&#62;&#60;div&#160;class=&#34;b&#34;&#62;b&#60;/div&#62;
CSS
.a&#160;{position:relative;background:#f00;}.menu{position:absolute;background:#0ff;height:50px;z-index:99;}.b&#160;{position:relative;background:#ff0;}
以上是页面代码,menu的z-index已设为99,但在IE6,IE7中DIV[menu]始终在div的下面.只能通加设置div[a]的z-index的值来提升级div[menu]层叠高度,但在火狐中无需设置.可以看出IE对层叠顺序的继承性比火孤要严格的多.但本人觉火孤的方式接近设计者的意图.虽然对IE和火狐对CSS不同解析深恶痛绝,也只能感到无奈.
]]></description>
		<wfw:commentRss>http://www.dansion.com/blog/xhtmlcss/z-index-for-ie.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>IE6中textarea宽度问题!</title>
		<link>http://www.dansion.com/blog/xhtmlcss/textarea-for-ie6.html</link>
		<comments>http://www.dansion.com/blog/xhtmlcss/textarea-for-ie6.html#comments</comments>
		<pubDate>Thu, 28 Feb 2008 16:26:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[xhtml+css]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[textarea]]></category>

		<guid isPermaLink="false">http://www.dansion.com/blog/archives/33</guid>
		<description><![CDATA[textarea设了100%宽度,起初在IE,FIREFOX都正常显示.但在IE里只要输入文字就会自动增宽.解决方法:在textarea外再加一个100%宽的div.哎,又是一个BUG.
]]></description>
		<wfw:commentRss>http://www.dansion.com/blog/xhtmlcss/textarea-for-ie6.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE菜单控制</title>
		<link>http://www.dansion.com/blog/xhtmlcss/ie-menu-control.html</link>
		<comments>http://www.dansion.com/blog/xhtmlcss/ie-menu-control.html#comments</comments>
		<pubDate>Mon, 19 Mar 2007 08:00:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[xhtml+css]]></category>
		<category><![CDATA[ie]]></category>

		<guid isPermaLink="false">http://www.dansion.com/blog/archives/11</guid>
		<description><![CDATA[　每当我们看到别人网页上的打开、打印、前进、另存为、后退、关闭本窗口、禁用右键等实现浏览器命令的链接，而自己苦于不能实现时，是不是感到很遗憾？是不是也想实现？如果能在网页上能实现浏览器的命令，将是多么有意思的事啊！下面我们就来看看如何用javascript代码实现浏览器菜单命令(以下代码在Windows&#160;XP下的浏览器中调试通过)。一、【文件(F)】菜单中的命令的实现　　1、〖打开〗命令的实现　　[格式]:document.execCommand(&#34;open&#34;)　　[说明]这跟VB等编程设计中的webbrowser控件中的命令有些相似，大家也可依此琢磨琢磨。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=document.execCommand(&#34;open&#34;)&#62;打开&#60;/a&#62;　　2、〖使用&#160;记事本&#160;编辑〗命令的实现&#160;　　[格式]:location.replace(&#34;view-source:&#34;+location)　　[说明]打开记事本，在记事本中显示该网页的源代码。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=location.replace(&#34;view-source:&#34;+location)&#62;使用&#160;记事本&#160;编辑&#60;/a&#62;　　3、〖另存为〗命令的实现&#160;　　[格式]:document.execCommand(&#34;saveAs&#34;)　　[说明]将该网页保存到本地盘的其它目录！　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=document.execCommand(&#34;saveAs&#34;)&#62;另存为&#60;/a&#62;　　4、〖打印〗命令的实现&#160;　　[格式]:document.execCommand(&#34;print&#34;)　　[说明]当然，你必须装了打印机！　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=document.execCommand(&#34;print&#34;)&#62;打印&#60;/a&#62;　　5、〖关闭〗命令的实现　　[格式]:window.close();return&#160;false　　[说明]将关闭本窗口。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=window.close();return&#160;false)&#62;关闭本窗口&#60;/a&#62;　　二、【编辑(E)】菜单中的命令的实现　　〖全选〗命令的实现&#160;　　[格式]:document.execCommand(&#34;selectAll&#34;)　　[说明]将选种网页中的全部内容！　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=document.execCommand(&#34;selectAll&#34;)&#62;全选&#60;/a&#62;　　三、【查看(V)】菜单中的命令的实现　　1、〖刷新〗命令的实现　　[格式]:location.reload()&#160;或&#160;history.go(0)　　[说明]浏览器重新打开本页。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=location.reload()&#62;刷新&#60;/a&#62;　　或加入:&#60;a&#160;href=&#34;#&#34;&#160;onclick=history.go(0)&#62;刷新&#60;/a&#62;&#160;　　2、〖源文件〗命令的实现&#160;　　[格式]:location.replace(&#34;view-source:&#34;+location)　　[说明]查看该网页的源代码。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=location.replace(&#34;view-source:&#34;+location)&#62;查看源文件&#60;/a&#62;　　3、〖全屏显示〗命令的实现&#160;　　[格式]:window.open(document.location,&#34;url&#34;,&#34;fullscreen&#34;)　　[说明]全屏显示本页。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=window.open(document.location,&#34;url&#34;,&#34;fullscreen&#34;)&#62;全屏显示&#60;/a&#62;　　四、【收藏(A)】菜单中的命令的实现　　1、〖添加到收藏夹〗命令的实现&#160;　　[格式]:window.external.AddFavorite(&#39;url&#39;,&#160;&#39;“网站名”)　　[说明]将本页添加到收藏夹。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;javascript:window.external.AddFavorite(&#39;http://oh.jilinfarm.com&#39;,&#160;&#39;胡明新的个人主页&#39;)&#34;&#62;添加到收藏夹&#60;/a&#62;&#160;　　2、〖整理收藏夹〗命令的实现&#160;　　[格式]:window.external.showBrowserUI(&#34;OrganizeFavorites&#34;,null)　　[说明]打开整理收藏夹对话框。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=window.external.showBrowserUI(&#34;OrganizeFavorites&#34;,null)&#62;整理收藏夹&#60;/a&#62;&#160;　　五、【工具(T)】菜单中的命令的实现　　〖internet选项〗命令的实现&#160;　　[格式]:window.external.showBrowserUI(&#34;PrivacySettings&#34;,null)　　[说明]打开internet选项对话框。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=window.external.showBrowserUI(&#34;PrivacySettings&#34;,null)&#62;internet选项&#60;/a&#62;&#160;　　六、【工具栏】中的命令的实现　　1、〖前进〗命令的实现&#160;　　[格式]history.go(1)&#160;或&#160;history.forward()　　[说明]浏览器打开后一个页面。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=history.go(1)&#62;前进&#60;/a&#62;　　或加入:&#60;a&#160;href=&#34;#&#34;&#160;onclick=history.forward()&#62;前进&#60;/a&#62;　　2、〖后退〗命令的实现&#160;　　[格式]:history.go(-1)&#160;或&#160;history.back()　　[说明]浏览器返回上一个已浏览的页面。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=history.go(-1)&#62;后退&#60;/a&#62;　　或加入:&#60;a&#160;href=&#34;#&#34;&#160;onclick=history.back()&#62;后退&#60;/a&#62;　　3、〖刷新〗命令的实现&#160;　　[格式]:document.reload()&#160;或&#160;history.go(0)　　[说明]浏览器重新打开本页。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=location.reload()&#62;刷新&#60;/a&#62;　　或加入:&#60;a&#160;href=&#34;#&#34;&#160;onclick=history.go(0)&#62;刷新&#60;/a&#62;&#160;　　　　七、其它命令的实现&#160;　　〖定时关闭本窗口〗命令的实现&#160;　　[格式]:settimeout(window.close(),关闭的时间)　　[说明]将关闭本窗口。　　[举例]在&#60;body&#62;&#60;/body&#62;之间加入：　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=settimeout(window.close(),3000)&#62;3秒关闭本窗口&#60;/a&#62;　　如果大家还整理出其他用javascript实现的命令，不妨投稿来和大家分享。　　【附】为了方便读者，下面将列出所有实例代码，你可以把它们放到一个html文件中，然后预览效果。　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=document.execCommand(&#34;open&#34;)&#62;打开&#60;/a&#62;&#60;br&#62;　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=location.replace(&#34;view-source:&#34;+location)&#62;使用&#160;记事本&#160;编辑&#60;/a&#62;&#60;br&#62;　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=document.execCommand(&#34;saveAs&#34;)&#62;另存为&#60;/a&#62;&#60;br&#62;　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=document.execCommand(&#34;print&#34;)&#62;打印&#60;/a&#62;&#60;br&#62;　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=window.close();return&#160;false)&#62;关闭本窗口&#60;/a&#62;&#60;br&#62;　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=document.execCommand(&#34;selectAll&#34;)&#62;全选&#60;/a&#62;&#60;br&#62;　　&#60;a&#038;nb
sp;href=&#34;#&#34;&#160;onclick=location.reload()&#62;刷新&#60;/a&#62;　&#60;a&#160;href=&#34;#&#34;&#160;onclick=history.go(0)&#62;刷新&#60;/a&#62;&#60;br&#62;&#160;　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=location.replace(&#34;view-source:&#34;+location)&#62;查看源文件&#60;/a&#62;&#160;&#60;br&#62;　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=window.open(document.location,&#34;url&#34;,&#34;fullscreen&#34;)&#62;全屏显示&#60;/a&#62;&#160;&#60;br&#62;&#160;　　&#60;a&#160;href=&#34;javascript:window.external.AddFavorite(&#39;http://www.dansion.com&#39;,&#160;&#39;天极网页陶吧&#39;)&#34;&#62;添加到收藏夹&#60;/a&#62;&#160;&#60;br&#62;　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=window.external.showBrowserUI(&#34;OrganizeFavorites&#34;,null)&#62;整理收藏夹&#60;/a&#62;&#160;&#60;br&#62;　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=window.external.showBrowserUI(&#34;PrivacySettings&#34;,null)&#62;internet选项&#60;/a&#62;&#160;&#60;br&#62;　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=history.go(1)&#62;前进1&#60;/a&#62;　&#60;a&#160;href=&#34;#&#34;&#160;onclick=history.forward()&#62;前进2&#60;/a&#62;&#60;br&#62;　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=history.go(-1)&#62;后退1&#60;/a&#62;　&#60;a&#160;href=&#34;#&#34;&#160;onclick=history.back()&#62;后退2&#60;/a&#62;&#60;br&#62;　　&#60;a&#160;href=&#34;#&#34;&#160;onclick=settimeout(window.close(),3000)&#62;3秒关闭本窗口&#60;/a&#62;&#60;br&#62;以上的还是比较实用的.
]]></description>
		<wfw:commentRss>http://www.dansion.com/blog/xhtmlcss/ie-menu-control.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

