event.preventDefault() を最低限理解する
3022 ワード
背景
event.preventDefault() というものをよく見かけるけどコレ何?
一言で
DOMイベントを止めるもの
Prevent : 防ぐ
Default : デフォルト
デフォルトのイベントをさせないよ
動作確認ファイル
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>preventDefault</title>
</head>
<body>
<a id="google" href="https://google.com">Google</a>
<script src="app.js"></script>
</body>
</html>
app.js
const google = document.getElementById("google")
google.addEventListener("click", () => {
event.preventDefault() /* これ */
console.log("link先への遷移イベントを防いだよ")
})
今回のファイルで何を確認するのか
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>preventDefault</title>
</head>
<body>
<a id="google" href="https://google.com">Google</a>
<script src="app.js"></script>
</body>
</html>
app.js
const google = document.getElementById("google")
google.addEventListener("click", () => {
event.preventDefault() /* これ */
console.log("link先への遷移イベントを防いだよ")
})
aタグをクリックするとリンク先に飛ぶというイベントが起こる。これを止める。
こんな感じ
終わり
Author And Source
この問題について(event.preventDefault() を最低限理解する), 我々は、より多くの情報をここで見つけました https://qiita.com/Taiga_san/items/c534d798575a67431368著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .