更新于2018.10.31
此错误已在iOS 12.1中修复,祝您愉快!
我在新发布的iOS 12 Safari中发现数组的值状态存在问题,例如,如下代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>iOS 12 Safari bugs</title>
<script type="text/javascript">
window.addEventListener("load", function ()
{
let arr = [1, 2, 3, 4, 5];
alert(arr.join());
document.querySelector("button").addEventListener("click", function ()
{
arr.reverse();
});
});
</script>
</head>
<body>
<button>Array.reverse()</button>
<p style="color:red;">test: click button and refresh page, code:</p>
</body>
</html>
刷新页面后,数组的值仍会反转。这是Bug还是新Safari的功能?
这是一个演示页面。尝试在iOS 12 Safari中使用它:https : //abelyao.github.io/others/ios12-safari-bug.html
41
在macOS 10.14 Mojave中也确认了错误-i.imgur.com/ZJtJJC1.png
—
a_rahmanshah
带有Safari版本12.0(13606.2.11)的macOS 10.13.6(High Sierra)具有相同的问题。刷新页面后,阵列仍然反转。
—
凯文·金贝尔
该错误已在Safari 12.0.1(macOS)和iOS 12.1中修复。
—
MrMister '18