gpt4 book ai didi

javascript - 我的 javascript 无法运行,文件是否未正确链接?

转载 作者:行者123 更新时间:2023-12-03 01:23:49 26 4
gpt4 key购买 nike

我对此很陌生,我不知道我的学校项目出了什么问题。我想也许我的 javascript 文件没有正确链接,或者代码可能只是损坏了?

// }
// Commented out above "}" - Edits must be at least 6 characters
function repost() {
var epost = document.getElementById('epost');
var repost = document.getElementById('repost');

if (epost.value != repost.value) {
repost.setCustomValidity('Epost adresserna måste matcha.');
} else {
// input is valid -- reset the error message
repost.setCustomValidity('');
}
}
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Skapa konto</title>
<link href="Stilmall.css" rel="stylesheet" type="text/css">
<script>var __adobewebfontsappname__="dreamweaver"</script>
<script src="http://use.edgefonts.net/abel:n4:default.js" type="text/javascript"></script>
<script src="reg.js" type="text/javascript"></script>
</head>
<body>
<div class="form1">
<form name="form2" id="form3" method="post" onsubmit="return validateForm();" action="tack.html">

<p class="form_text">
<input type="text" id="epost" placeholder="E-post" required>
<input type="text" id="repost" placeholder="Repetera E-post" required oninput="repost(this)">
</p>

<p class="form_text">
<input type="submit" id="sumbit" value="Registrera">
</p>
</form>
</div>
</body>
</html>

最佳答案

嗯,这有点棘手,但你的 id 和函数名称都是“repost”,在这种情况下,你会收到一条错误消息,指出 repost is not a function 并且你必须更改名称函数或 id。这已经在这里讨论过:Why JS function name conflicts with element ID?

另外,不要忘记修复 if 条件中的拼写错误。

关于javascript - 我的 javascript 无法运行,文件是否未正确链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51642463/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com