我用<meta name="apple-mobile-web-app-capable" content="yes">
. 如果我将网页添加到主屏幕,所有 JavaScript 都会停止工作
<!DOCTYPE html>
<html>
<head>
<title>Demo</title>
<meta name="apple-mobile-web-app-capable" content="yes">
</head>
<body>
<script type="text/javascript" charset="utf-8">
alert(window.navigator.standalone);
</script>
</body>
</html>
这个演示在 Safari 中工作,警报错误,但如果我将页面添加到主屏幕,然后从主屏幕打开它,没有警报,没有任何 Javascript 工作。有谁知道它有什么问题?