我想弄清楚为什么以下代码可以在Internet Explorer中运行,但不能运行Chrome或Firefox:
<script language='javascript'>
window.location.replace = 'http://home.php'
</script>
当我更改单词&#39;替换&#39;到&#; href&#39;,它可以在Chrome和Firefox中使用,但不再适用于IE。
对此有任何解释吗?
答案 0 :(得分:0)
replace
特定于IE。
直接分配给window.location
以便携带:
window.location = 'http://home.php'