SCRIPT5039:使用IE9重新说明常量属性

2022-08-10 00:00:00 javascript internet-explorer-9

我正在跨IE浏览器优化我的网站。除IE9外,所有设备都工作正常。

我有一个与此类似的函数:

 var history = new Array();


 function loadPage(page, parameters) {

    $(".dynamic_load").fadeOut(400, function(){

    $(this).fadeIn(400).html("loading").load(page, parameters,
    function(response){
    $(".dynamic_load").html(response).show();  });

                if (history.length > 5) {
                    history.shift();
                } 
                history.push(page); 

                                          });

 }

我收到错误SCRIPT5039:重新说明常量属性,它在行

 var history = new Array();

这是什么意思?我还没有在其他地方申报过。它只是一个全局数组。


解决方案

可能与window.history冲突。将其重命名为其他名称,然后查看错误是否消失。

相关文章