window.location.Reload()和window.location.href=window.location.href【转】
<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;都是刷新当前页面。
?