<body onload="javascript function">
在桌面浏览器上运行良好,但在 iPhone 上无法运行。我的 iPhone 似乎可以读取外部 CSS 文件和 JS 文件,因为当我从页面单击按钮时,它会触发 JS 函数。但奇怪onload
的是,只有事件不起作用。我现在很无知。谁能告诉我为什么我不能在 iPhone 上触发 onload 事件?下面是我的代码。
<!DOCTYPE HTML>
<html>
<head>
<title>HTML5 연습</title>
<meta name="viewport" content="width=480, user-scalable=1"/>
<link rel="stylesheet" href="../styles/test1.css" />
<script type="text/javascript" src="../scripts/fbsdk.js"></script>
<script type="text/javascript" src="../scripts/initcss.js"></script>
<script>
//document.addEventListener('DOMContentLoaded', checkLoginCase, false);
</script>
</head>
<body onload="checkLoginCase()">
<div id="wrap">
<header id="top">
<img src="../fbimg/logo.png" alt="상단이미지" title="상단이미지">
</header>
</div>
<button onclick="checkLoginCase()"> check fxn1</button>
<button onclick="checkAlert()"> check fxn2</button>
</body>
</html>