index.html
<html>
<head>
<script type="text/javascript" src="foo.js"></script>
<script type="text/javascript">
window.onload = function() {
console.log("hello from html");
};
</script>
</head>
<body>
<div class="bar">bar</div>
</body>
</html>
foo.js
// this js file will be completely ignored with window.onload
//window.onload = function() {
console.log("hello from external js");
var bar = document.getElementsByClassName("bar");
// this returns 0 instead of 1
console.log(bar.length);
//};
window.onload
を html で使用すると、window.onload
外部からの js は無視されます。window.onload
from external js がコメントアウトされている場合は 0 を返しbar.length
ます。window.onload
from html を削除すると、fromwindow.onload
external js が正常に動作します。
両方を使用できない理由を誰か説明できますwindow.onload
か?
HTMLで使用する必要がある場合window.onload
、ウィンドウが外部jsからロードされているかどうかをどのように確認できますか?