我在 jsp 文件的标头中有这段代码。出于某种原因,它在桌面和移动浏览器上运行良好,但在 iOS 强制门户上,只触发了第一个警报。有谁知道为什么?
<script type="text/javascript">
alert("first alert");
window.onload = function() {
alert("second alert");
};
</script>
我在 jsp 文件的标头中有这段代码。出于某种原因,它在桌面和移动浏览器上运行良好,但在 iOS 强制门户上,只触发了第一个警报。有谁知道为什么?
<script type="text/javascript">
alert("first alert");
window.onload = function() {
alert("second alert");
};
</script>