JavaScript 3

1447 ワード

目的:buttonボタンをクリックしてメッセージをイジェクトする.
知識点:window.onload事件はホームページでロードし終わった後で実行します.もしwindow.onload事件の中で事件を書きませんとエラーが発生します.
下記のコードの通りnullを申し込みます.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>     </title>
<script>
var oBtn = document.getElementById('btn1');
oBtn.onclick = function()
{
alert('not onload');
}
</script>
</head>
<body>
<input id="btn1" type="button"/>
</body>
</html>
正確な書き方:外の階にwindow.onload=function(){};すぐできます
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>     </title>
<script>
window.onload = function()
{
var oBtn = document.getElementById('btn1');
oBtn.onclick = function()
{
alert('onload');
}
}
</script>
</head>
<body>
<input id="btn1" type="button"/>
</body>
</html>