当前位置: 代码迷 >> Web前端 >> window.location.Reload()跟window.location.href=window.location.href【转】
  详细解决方案

window.location.Reload()跟window.location.href=window.location.href【转】

热度:524   发布时间:2012-11-06 14:07:00.0
window.location.Reload()和window.location.href=window.location.href【转】

<a onclick="javascript:window.location.href=window.location.href;">

<a onclick="javascript:window.location.reload();">测试效果一样。表单没有提交。<input type="submit" onclick="javascript:window.location.reload();" value="单击" id="btnVCode" />
<input type="submit" onclick="javascript:window.location.href=window.location.href;" value="单击" id="btnVCode" />都提交数据

window.location.Reload()应该是刷新.(如果有数据提交的话,会提示是否提交的(是和否选项))
window.location.href=window.location.href; 是定向url提交数据 最好不要用location.reload(),而用location=location比较好,还有在模式窗口(showModalDialog和showModelessDialog)前者不能用。

reload参数有true和false,比较有意思?

window.location.Reload()和window.location.href=window.location.href;都是刷新当前页面。

?

  相关解决方案