html form提交问题(登录界面from提交,tip提示闪一秒问题)

<form id="myForm" action="javascript:;" method="post">
                    <div class="form-group" style=" height:60px; font-size:24px;  font-weight:bold; color:#0682C3;padding:20px;text-align:center;">
                        账号登录
                    </div>
                    <div class="form-group">
                        <input type="text" class="form-control" id="LoginName" placeholder="账号">
                    </div>
                    <div class="form-group">
                        <input type="password" class="form-control" id="LoginPassword" placeholder="密码">
                    </div>
                    <div class="form-check">
                        <label class="form-check-label">
                            <input class="form-check-input" type="checkbox" id="savepassword" onclick="SavePassword()"> 记住密码
                        </label>
                    </div>
                    <div class="form-group" style="margin-top:30px;">
                        <button type="submit" class="btn btn-primary btn-block" style="background-color:#0682C3;border-color:#0682C3;" onclick="Submit()">登录</button>
                    </div>
                </form> 

 

form 修改属性action        action="javascript:;"    不交互,在点击提交时,才与后台交互

 function Submit() {
            if ($("#LoginName").val() == "") {
                layer.tips('请输入登录账号!', "#LoginName", { tips: [2, '#FF5722'], time: 4000 });
                $("#LoginName").focus();
                return false;
            }

            if ($("#LoginPassword").val() == "") {
                layer.tips('请输入登录密码!', "#LoginPassword", { tips: [2, '#FF5722'], time:4000 });
                $("#LoginPassword").focus();
                return false;
            }

            $.ajax({
                Asynch: true,
                type: "post",
                cache: false,
               ...
                success: function (result) {
                    if (result.success) {
                        top.window.location = "/ModuleMain";
                    }
                    else {
                        layer.msg(result.showMsg, { icon: 5, time: 1000 });
                    }
                }
            });
        }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值