如何修复未捕获的类型错误:无法读取 null 的属性'addEventListener'(与脚本文件的位置无关...我认为)



我是JavaScript的新手,我不知道为什么我会收到此错误:未捕获的类型错误:无法读取null的属性"addEventListener"。

我遵循了在回答类似问题时发布的建议,并将包含我的JavaScript的文件放在我的身体底部,但这并没有解决它。我也尝试使按钮onclick=checkValidity((,但这也不起作用。

document.getElementById("loginButton").addEventListener("click", 
checkValidity);
function checkValidity() {
var usrName = document.getElementById("inputUsername").value;
var usrPswd = document.getElementById("inputPswrd").value;
if(usrName == "admin" && usrPswd == "123"){
window.open("HtmlPage2.html");
}
else {
alert("Your username and password are incorrect.");
}
}

and the HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial- 
scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<title>Document</title>
</head>
<body>
<div class=wrap>
<input type="text" id="inputUsername">
<p>Username</p>
<input type="password" id="inputPswrd">
<p>Password</p>
<button id="loginButton">Log in</button>
<p id="login"></p>
</div>
<script type="text/javascript" src="Script.js" async></script>
</body>
</html>

我希望代码做的是检查inputUsername 和 inputPswrd 中的输入是否与 if...else 函数,如果是,请打开一个新窗口;否则发出错误消息警报。

编辑:如果我将上面的所有代码移动到我的JS文件的顶部,它将按预期工作并打开一个新窗口,但是该新页面的代码将无法运行(但新页面代码确实运行它在我的JS文件的顶部(。新窗口打开时收到的错误消息是第 1 行:未捕获的类型错误:无法读取 Script.js:1 处 null 的属性"值"。

附加代码: 用于 HTML 页面 2 的 JS:

document.getElementById("greeting").innerHTML="Welcome";
document.getElementById("productButtonOne").addEventListener("click", 
addToCart);
document.getElementById("productButtonTwo").addEventListener("click", 
addToCart);
document.getElementById("productButtonThree").addEventListener("click", 
addToCart);
var clicks = 0;
function addToCart() {
clicks = clicks + 1;
document.getElementById("cartProductsTotal").innerHTML = "You have " + 
clicks + " items in your shopping cart.";
}

第 2 页的 HTML 开头:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<title>Document</title>
</head>
<body>
<div class=wrap>
<h1 id="greeting"></h1>
<div id="productOne" class="cartItem">
<button id="productButtonOne" class="cartItems">Add to cart</button>
<img src="monaLisa.jpg" id="monaLisaImage">
<h2 class="productDescriptions">Mona Lisa</h2>
<p>This painting is great.</p>
<span class=price>This item costs $10.</span>
</div>


将 scirpt 标签放在正文之后,它将起作用

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<title>Document</title>
</head>
<body>
<div class=wrap>
<input type="text" id="inputUsername">
<p>Username</p>
<input type="password" id="inputPswrd">
<p>Password</p>
<button id="loginButton">Log in</button>
<p id="login"></p>
</div>
<script type="text/javascript" src="Script.js" async></script>
</body>
<script>
document.getElementById("loginButton").addEventListener("click", checkValidity);
function checkValidity() {
var usrName = document.getElementById("inputUsername").value;
var usrPswd = document.getElementById("inputPswrd").value;
if(usrName == "admin" && usrPswd == "123"){
window.open("HtmlPage2.html");
}
else {
alert("Your username and password are incorrect.");
}
}
</script>
</html>

<script type="text/javascript" src="Script.js" async></script>删除这一行,我认为您的代码加载了错误的脚本。

相关内容

  • 没有找到相关文章

最新更新