gpt4 book ai didi

javascript - 用 J.S 制作一个简单回答的问题形式

转载 作者:行者123 更新时间:2023-11-28 14:30:45 25 4
gpt4 key购买 nike

如何用js制作一个简单回答的问题形式?我试过了

<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8"/>
<script>
function cipher1(){
var val ="theanswer";
if(val == (document.getElementById("cipher1").value)){
alert("correct");
}
}
</script>
</head>
<body id="bod">
<div id="cipher1"style="display:none;">
<input id="cipher1"type="text" value="write the answer here"/>
<input type="button" class="but"value="answercheck"onclick="cipher1()"/>
</div>
</body>
</html>

但是这不起作用。请帮忙!!!

最佳答案

您的 ID 必须是唯一的。在您的代码中,您将“cipher1”与 div 和输入字段相关联。您可以将文本字段的 Id 更改为 cipher2。请参阅下面的代码:

  function cipher1(){
var val ="theanswer";
if(val == (document.getElementById("cipher2").value)){
alert("correct");
}
}
 <div id="cipher1">
<input id="cipher2"type="text" value="write the answer here"/>
<input type="button" class="but"value="answercheck"onclick="cipher1()"/>
</div>

关于javascript - 用 J.S 制作一个简单回答的问题形式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51630250/

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