首页 > 代码库 > ie和Firefox js跳转路径问题

ie和Firefox js跳转路径问题

js跳转路径问题

在项目中用JS做跳转,发现ff和ie中出现不一致现象。无论是window.location.href还是window.open,@ie中跳转以当前路径开始跳转@ff中跳转以根目录开始                                    if (document.all||!!window.ActiveXObject){  //判断是否是IE内核
                                        window.open('inventoryCableList.jsp','_self');
                                    }else{
                                        window.open('platform/inventory/inventoryCableList.jsp','_self');   
                                    }