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

登录框弹不出来,求解!

登录框弹不出来,求解!

lorelei 2015-11-19 23:40:57
<div class="login"> <a href="" class="a1">登录</a><a href="" class="a2">注册</a> </div><div id="LoginBox">        <div class="row1">            登录<a href="javascript:void(0)" title="关闭窗口" class="close_btn" id="closeBtn">×</a>        </div>        <div class="row">            用户名: <span class="inputBox">                <input type="text" id="txtName" placeholder="请输入手机号或邮箱登录" />            </span><a href="javascript:void(0)" title="提示" class="warning" id="warn">*</a>        </div>        <div class="row">            密&nbsp;码: <span class="inputBox">                <input type="text" id="txtPwd" placeholder="请输入密码" />            </span><a href="javascript:void(0)" title="提示" class="warning" id="warn2">*</a>        </div>        <div class="row">            <input type="submit" id="loginbtn" value="登录">        </div>    </div><script type="text/javascript"> $(function ($) { //弹出登录 $("#a1").hover(function () { $(this).stop().animate({ opacity: '1' }, 600); }, function () { $(this).stop().animate({ opacity: '0.6' }, 1000); }).on('click', function () { $("body").append("<div id='mask'></div>"); $("#mask").addClass("mask").fadeIn("slow"); $("#LoginBox").fadeIn("slow"); }); // //按钮的透明度 $("#loginbtn").hover(function () { $(this).stop().animate({ opacity: '1' }, 600); }, function () { $(this).stop().animate({ opacity: '0.8' }, 1000); }); //文本框不允许为空---按钮触发 $("#loginbtn").on('click', function () { var txtName = $("#txtName").val(); var txtPwd = $("#txtPwd").val(); if (txtName == "" || txtName == undefined || txtName == null) { if (txtPwd == "" || txtPwd == undefined || txtPwd == null) { $(".warning").css({ display: 'block' }); } else { $("#warn").css({ display: 'block' }); $("#warn2").css({ display: 'none' }); } } else { if (txtPwd == "" || txtPwd == undefined || txtPwd == null) { $("#warn").css({ display: 'none' }); $(".warn2").css({ display: 'block' }); } else { $(".warning").css({ display: 'none' }); } } }); //文本框不允许为空---单个文本触发 $("#txtName").on('blur', function () { var txtName = $("#txtName").val(); if (txtName == "" || txtName == undefined || txtName == null) { $("#warn").css({ display: 'block' }); } else { $("#warn").css({ display: 'none' }); } }); $("#txtName").on('focus', function () { $("#warn").css({ display: 'none' }); }); // $("#txtPwd").on('blur', function () { var txtName = $("#txtPwd").val(); if (txtName == "" || txtName == undefined || txtName == null) { $("#warn2").css({ display: 'block' }); } else { $("#warn2").css({ display: 'none' }); } }); $("#txtPwd").on('focus', function () { $("#warn2").css({ display: 'none' }); }); //关闭 $(".close_btn").hover(function () { $(this).css({ color: 'black' }) }, function () { $(this).css({ color: '#999' }) }).on('click', function () { $("#LoginBox").fadeOut("fast"); $("#mask").css({ display: 'none' }); }); }); </script>        
查看完整描述

1 回答

?
pardon110

TA贡献1038条经验 获得超227个赞

将你整个代码贴出来,方便大家测试找出问题。

查看完整回答
反对 回复 2015-11-21
  • 1 回答
  • 0 关注
  • 1637 浏览
慕课专栏
更多

添加回答

举报

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