我想創建一個隨機生成的號碼,要求用戶輸入一個號碼,然後比較兩個號碼,然後顯示一個彈出窗口,告訴他們是否匹配。這是我的代碼比較用戶輸入的號碼和Javascript中隨機生成的號碼
function myFunction() {
var num=document.getElementById("demo").innerHTML = Math.floor(1000 + Math.random() * 9000);
}
function myFunction1() {
var secondInput = document.getElementById("demo1").value;
if(num === secondInput)
{
window.alert("Same");
}
else
{
window.alert("Don't do that again cvv");
}
<button onclick="myFunction()">press the button to see the code</button>
<p id="demo"></p>
code: <input type="text" name="code" required/><br/><br/>
<button onclick="myFunction1()">Compare</button> \t
<p id="demo1"></p>
'的document.getElementById( 「demo1的」)value'現在就在你的HTML看看哪一種元素是' demo1' –
那麼,你的問題是什麼? –
它不起作用 –