我在这里试图做的是,当单击一个按钮调用我的函数“ mostrarPro”时,当我单击另一个按钮时调用另一个函数。我需要在调用函数时更改变量,但是什么也没有发生。
var cont = 0;
function mostrarPro(){
cont = 1;
if(cont == 1){
document.getElementById("texto2").style.display = "block";
document.getElementById("texto1").style.display = "none";
}
}
function mostrarSed(){
cont = 2;
if(cont == 2){
document.getElementById("texto1").style.display = "block";
document.getElementById("texto2").style.display = "none";
}
}
console.log(cont);