如何在javascript if语句中定义变量

0 javascript css if-statement

var x; 

function apply() {
    if (x = 1) {
        alert("show");
        document.getElementById("nav").style.display = "inline";
        var x = 2;
    } else {
        alert("hide");
        document.getElementById("nav").style.display = "none";
        var x = 1;
    }
}

function hide() {
    document.getElementById("nav").style.display = "none";
    x = 1;
    alert(x)
}
Run Code Online (Sandbox Code Playgroud)

我在使用这段代码时遇到了一些麻烦.我使用该功能hide onload并将功能apply链接到按钮单击.

juv*_*ian 5

正确用法:

var x; // we define the variable x global outside the functions

function apply() {
    if (x == 1) { // you need to check with ==, with = you are just setting its value
        alert("show")
        document.getElementById("nav").style.display = "inline";
        x = 2 // change the varibale to 2
    } else {
        alert("hide")
        document.getElementById("nav").style.display = "none";
        x = 1 // change it to 1
    }

}

function hide() {
    document.getElementById("nav").style.display = "none";
    x = 1;
    alert(x)
}
Run Code Online (Sandbox Code Playgroud)