为了账号安全,请及时绑定邮箱和手机立即绑定

js两个if嵌套在一起是如何运行的?

js两个if嵌套在一起是如何运行的?

素胚勾勒不出你 2019-02-12 17:19:12
如这个登录验证的例子,两个if嵌套在一起是怎么运行的?<!DOCTYPE html><html><head>    <title>login</title>    <meta charset="utf-8"></head><body>    <form id="loginform" name='loginform' onsubmit="return checkLogin()">        <div>            <label for="username">账号:</label>            <input type="text" id="username" name="username">        </div>        <div>            <label for="password">密码:</label>            <input type="password" id="password" name="password">        </div>        <input type="submit" value="登录">    </form>    <script type="text/javascript">    //验证登录    function checkLogin() {        if (loginform.username.value != "") {            if (loginform.password.value != "") {                return ture            } else {                alert('密码不能为空');                return false            }        } else {            alert('用户名不能为空');            return false        }    }    </script></body></html>
查看完整描述

2 回答

?
慕田峪9158850

TA贡献1794条经验 获得超7个赞

https://img1.sycdn.imooc.com//5c7240410001bfc505720432.jpg

查看完整回答
反对 回复 2019-02-24
?
慕标5832272

TA贡献1966条经验 获得超4个赞

var username = loginform.username.value != "";

var password = loginform.password.value != "";

if(!username ){

    alert('用户名不能为空');

}

if(!password){

    alert('密码不能为空');

}

return username && password;


查看完整回答
反对 回复 2019-02-24
  • 2 回答
  • 0 关注
  • 2042 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信