Skip to content

Commit

Permalink
Merge pull request #150 from iij/dom-modify
Browse files Browse the repository at this point in the history
素のJavaScript + DOM入門の更新 もう一つ
  • Loading branch information
igrep authored Aug 21, 2023
2 parents dd07fa4 + f4a63b9 commit 0267ae8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/frontend/dom/4.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<script type="module">
const inputElement = document.body.children[0];
inputElement.addEventListener("input", (event) => {
console.log("「適当なボタン」に入力しました:", event.target.value);
console.log("適当な文字列を入力しました:", event.target.value);
});
</script>
<title></title>
</head>
<body>
<input type="text" placeholder="適当な入力欄">
<input type="text" placeholder="適当な文字列">
</body>
</html>
2 changes: 1 addition & 1 deletion src/frontend/dom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ console.log("Hello, world!");

ここからは、これ以降で使用**しない**ものも含めて、JavaScriptの主要な機能を簡単に紹介します。いずれのサンプルコードも、先ほど書いた`<script type="module">``</script>`で囲ったところに挿入して保存・ブラウザーの再読み込みをすれば、動作を確認できるようになっています。是非気になったものを試してみてください!

### 変数宣言
### 変数宣言(後ほど使用します)

```js
const aConstant = "これは定数です";
Expand Down

0 comments on commit 0267ae8

Please sign in to comment.