吴忠市建设网站,免费论文网站大全,彩页模板,好一点网站建设公司我们的登录页面使用了 加上一些简单的CSS样式#xff0c;最终的效果如下图 我们给登录页面做了简单的JS判断#xff0c;如果用户名和密码没有填写登录#xff0c;会给出相关的提示信息 具体代码如下html用户登录 html登陆界面 function foo(){ if(myform.username.v… 我们的登录页面使用了 加上一些简单的CSS样式最终的效果如下图 我们给登录页面做了简单的JS判断如果用户名和密码没有填写登录会给出相关的提示信息 具体代码如下html用户登录 html登陆界面 function foo(){ if(myform.username.value) { alert(请输入用户名); myform.username.focus(); return false; } if (myform.password.value) { alert(请输入密码); myform.password.focus(); return false; } } table{ height: 300px; } input{ width: 190px; height: 25px; } .title{ background-color:#B10707 ; color: white; border: none; } .but{ width: 140px; height: 43px; } .spa{ margin-left: 10px; } 会员登录[返回首页]会员ID会员密码立即登录 将我们在页面填写的信息提交到login.php页面处理