記事の趣旨
- React.jsを勉強しようとして、jsだけではconsole.logが見られず困った
- 同じ階層にhtmlを用意しておいて、そのconsoleを見ながら作業すればいい!と気づく
- テンプレートhtmlの備忘
テンプレートhtml
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Station 15</title>
</head>
<body>
<p>load時点のコンソール確認</p>
<button onclick="test-App.js()">ボタン</button>
<p>ボタンを押したときのコンソールも確認</p>
<script type="text/javascript" src="./test-App.js"></script>
</body>
</html>
jsの上下テンプレート
above
// なくて良さそう?
bottom
// なくて良さそう?