gpt4 book ai didi

javascript - window.open() 的重定向在 IE 中不起作用

转载 作者:行者123 更新时间:2023-12-03 04:09:56 26 4
gpt4 key购买 nike

我有以下代码,可以在 Chrome 中完美运行:通过单击 New,它会打开一个弹出窗口,然后单击 Change 会重定向到另一个页面。

JSBin

<!DOCTYPE html>
<html ng-app="plunker">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script>
</head>
<body ng-controller="contentCtrl">
<button ng-click="openNew()">New</button>
<button ng-click="change()">Change</button>
<script>
var app = angular.module('plunker', []);
app.controller('contentCtrl', ['$scope', function ($scope) {
$scope.openNew = function () {
$scope.popup = window.open("https://www.stackoverflow.com", "popup", "status=1, location=1");
}

$scope.change = function () {
// $scope.popup = window.open("https://www.sina.com", "popup", "status=1, location=1");
// $scope.popup.location.assign("https://www.sina.com")
// $scope.popup.location.href("https://www.sina.com")
// $scope.popup.location = "https://www.sina.com"
$scope.popup.location.href = "https://www.sina.com"
}
}]);
</script>
</body>
</html>

但是,这段代码在 IE 11 中不起作用。我发现 this thread其中列出了IE中重定向的几种方式,我尝试了location.assign(...)location.href(...)等,但都不起作用。

有谁知道如何实现IE中window.open的重定向吗?

最佳答案

根据 documentation , window.location.href= 似乎是在 IE 中设置(和获取)窗口 URL 的最佳方式。

如果这不起作用,替换应该可以解决问题:$scope.popup.location.replace("https://www.google.com/");

关于javascript - window.open() 的重定向在 IE 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44370463/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com