o Botão fica azul porem não consigo clicar nele para reiniciar o game, já tentei olhar os codgos que eles fizeream e não conseguiu descobrir o erro.
let NumeroSecreto = GerarNumeroAleatorio ();
console.log (NumeroSecreto)
let Tentativas = 1
function ExibirTextoNaTela (tag, Text) {
let Campo = document.querySelector (tag)
Campo.innerHTML = Text ;
}
ExibirTextoNaTela ("h1", "Jogo do Numero Secreto") ;
ExibirTextoNaTela ("p", "Escolha um numero de 1 a 10") ;
function verificarChute () {
let Chute = document.querySelector("input").value ;
if (Chute==NumeroSecreto){
ExibirTextoNaTela ("h1", "Acertou") ;
let PalavraTentativas = Tentativas > 1 ? "Tentativas" : "Tentativa" ;
let MensagemTentativas = `voce descobriu o numero secreto ${NumeroSecreto} com ${Tentativas} ${PalavraTentativas} ` ;
ExibirTextoNaTela ("p", MensagemTentativas) ;
document.getElementById ("reiniciar").removeAttribute ("disabled");
} else {
if (Chute>NumeroSecreto){
ExibirTextoNaTela ("p", `O Numero secreto e menor que ${Chute}`) ;
} else {
ExibirTextoNaTela ("P",`O numero secreto é maior que ${Chute}`) ;
}
Tentativas++ ;
LimpaCampo ();
}
}
function GerarNumeroAleatorio (){
return parseInt(Math.random() * 10 + 1) ;
}
function LimpaCampo (){
Chute = document.querySelector ("input") ;
Chute.value = "" ;
}
function reiniciarJogo (){
NumeroSecreto = GerarNumeroAleatorio ();
LimpaCampo ();
Tentativas = 1 ;
}