-1

この小さな JavaScript を作成しました。

<script type="text/javascript">
if(perm == 0)
{
var perm = 0;
var password = "showrocks69";
var pass = prompt("[Login] Type in the Admin CP Password:","");
if(pass==password)
{
perm = 1;
window.location = "http://cod5showtime.url.ph/acp.html";
}
else
{
alert("[Error] Invalid Password!");
window.location = "http://cod5showtime.url.ph/";
}
}
</script>
<script type="text/javascript">
function acpLogout()
{
var perm = 0;
alert("[Log Out] Logged out from Administrator Account");
window.location = "http://cod5showtime.url.ph/";
}
</script>

そして、このボタン:

<button class="btn" onClick="acpLogout()">Log Out</button>

誰かがログアウトをクリックしたときに作成したい 'perm' 変数が 0 に設定されます。何か案は ?

4

2 に答える 2