window对象

window.open()是可以在一个网站上打开另外的一个网站的地址,

 而window.location是只能在一个网站中打开本网站的网页。

 

window.location.href 属性

<SELECT onchange="window.location.href=this.options[this.selectedIndex].value">
<OPTION VALUE="http://www.microsoft.com/ie">Internet Explorer</OPTION>
<OPTION VALUE="http://www.microsoft.com">Microsoft Home</OPTION>
<OPTION VALUE="http://msdn.microsoft.com">Developer Network</OPTION>
</SELECT>

 

window.location.Reload()应该是刷新.(如果有数据提交的话,会提示是否提交的(是和否选项))


window.location.href=window.location.href; 是定向url提交数据 。

最好不要用location.reload(),而用location=location比较好,还有在模式窗口(showModalDialog和showModelessDialog)前者不能用。

你可能感兴趣的:(Microsoft,IE)