2

我在 jsp 文件的标头中有这段代码。出于某种原因,它在桌面和移动浏览器上运行良好,但在 iOS 强制门户上,只触发了第一个警报。有谁知道为什么?

<script type="text/javascript">
  alert("first alert");
  window.onload = function() {
    alert("second alert");
  };
</script>

4

1 回答 1

3

我想到了。使用这个作品...

<script type="text/javascript">
  alert("first alert");
  window.addEventListener('load', 
    function() { 
      alert("second alert");
    }, false);
</script>

于 2017-03-03T00:34:57.520 回答