我正在制作一个有3个输入的网站。每个输入,我希望用户只有在他们为所有3个输入输入正确的单词时才被重定向。如果用户提交时没有正确无误,则不执行任何操作。这与我上一篇文章类似,但它只有1个输入,这很容易。我不是这方面的大师,所以任何反馈或解决方案都会很棒。
var slim = document.getElementById("slim");
var shady = document.getElementById("shady");
var standup = document.getElementById("standup");
function tree1() {
slim.value === "slim";
}
function tree2() {
shady.value === "shady";
}
function tree3() {
standup.value === "stand up";
}
if (tree1() + tree2() + tree3() === true) {
window.location = "https://example.com";
}
<form action="/eyerepeat" method="get">
<label for="fname">First name:</label>
<input type="text" id="slim" /><br /><br />
<label for="lname">Last name:</label>
<input type="text" id="shady" /><br /><br />
<label for="action">Action:</label>
<input type="text" id="standup" /><br /><br />
<input id="submit" type="submit" value="Submit" />
</form>
慕斯王
幕布斯7119047
相关分类