您如何在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/

10-16 21:07