イベントリスナー機能に問題があります。エラーは発生しません。私はビデオを聴いても、他のコードをコピーして貼り付けて動作させていますが、イベントリスナーを追加することは、ここでは動作しません。ここイベントリスナーを追加する
<!DOCTYPE html>
<html>
<head><title>Main page of a simple website</title>
<link rel="stylesheet" type="text/css" href="mstn.css"/>
<link href='https://fonts.googleapis.com/css?family=Josefin+Slab:100' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<a href="https://www.google.com" target="_parent">click here to go to google</a>
<a href="victimclient.rar" download="victimclient.rar">here</a>
<p id="demo">testing testing testing </p>
<p>testing testing testing</p>
<h1>whats little g</h1>
<script type="text/javascript" src="checkthisout.js">
y = document.getElementById("input").addEventListener("click", myFunction);
if(y){
function myFunction() {
alert("hello world")
}
}
</script>
<input holder="password" value="replace here" id="input"/>
</body>
なぜ関数定義をif条件の中に入れますか?それは必要ではありません。 **イベントリスナーを追加すると、**関数**を定義する必要があります。そうしないと何も起こりません。 – evolutionxbox