よし、まず始めに、完全な初心者です。重要なことを見逃しているため、私の質問への回答は非常に単純かもしれません。
switch ステートメントを作成しようとしています。h1 タグの innerHTML を id="bbref" で切り替えます。userName 変数を「Lister」に設定し、switch ステートメントを作成して、userName に入力された名前に基づいて h1 タグ ベースに別の行を書き込みました。
なんらかの理由で、しかし、私のコードはちょうど動作していません.何か考え..または私の側に顕著な脳のおならはありますか?
コードは次のとおりです。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Javascript Learning</title>
<script type="text/javascript">
var userName = "Lister";
switch (userName) {
case "Lister" :
document.write.getElementById("bbref").innerHTML = "Lister Is the Man!";
break;
case "Rimmer":
document.write.getElementById("bbref").innerHTML = "Rimmer is a Smeg head...";
break;
default :
doacument.write.getElementById("bbref").innerHTML = "It's all about \"The Cat\""
}
</script>
</head>
<body>
<header></header>
<section>
<article>
<h1 id="bbref">Test Title</h1>
</article>
</section>
<footer></footer>
</body>
</html>