0

在我的网站中,我有一个未显示的框。当用户键入他的用户名和密码时,如果它们正确,则必须显示该框。在这里您可以看到 HTML 代码:

<div id="mainbox" style="display: none;">
    <p class="classm">Test.</p>
</div>    
<input type="text" id="user"/>
<br />
<input type="text" id="password" value="a"/>
<br />
<input type="button" value="Log in" onclick="login();">

这里是javascript函数:

function login() {
    var a = document.getElementById('password').value;
    var b = document.getElementById('user').value;
    if ((a == 'qwe') && (b == 'rty')) { //the problem is not here
     document.getElementById('password').style.display="none";
    }
    else
    {
     alert('You are not logged in.');  
    }
}

当我单击该按钮时,Log in似乎login();没有调用该函数,因为发生了任何事情。你知道为什么吗?

4

2 回答 2

4
if (a == 'qwe') && (b == 'rty') //Wrong

附上条件,如if( condition )

 if ((a == 'qwe') && (b == 'rty') ) //Corect

正如@Frédéric Hamidi 建议的那样,不需要内括号

像这样简单

if (a == 'qwe' && b == 'rty' )

演示在这里

于 2013-08-31T10:50:41.733 回答
2

使用正确的 if

if (a == 'qwe' && b == 'rty' )

小提琴

于 2013-08-31T10:52:14.077 回答