200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > html5用户注册页面代码 HTML5注册页面示例代码

html5用户注册页面代码 HTML5注册页面示例代码

时间:2024-01-18 17:42:16

相关推荐

html5用户注册页面代码 HTML5注册页面示例代码

HTML5写的注册页面,正在学习html5的朋友可以参考下

代码如下:

register.html

function play(){

document.getElementById("menu_item").style.display = "";

}

function noplay(){

document.getElementById("menu_item").style.display = "none";

}

function passwd(){

var pass = document.getElementById("password").value;

var tip = document.getElementById("tip");

if (pass.length < 4) {

document.getElementById("meter").value = pass.length;

tip.innerHTML = "差";

}

else

if (pass.length <= 8) {

document.getElementById("meter").value = pass.length;

tip.innerHTML = "中";

}

else {

document.getElementById("meter").value = pass.length;

tip.innerHTML = "高";

}

}

代码如下:body {

background-image: url("../images/bg.jpg");

text-align: center;

background-repeat: repeat-x;

background-position: 0px 0px ;

background-size:

}

.table {

border: 1px solid #90BFFF;

width:810px;

}

tr {

font-family: 微软雅黑;

font-weight:800;

color: #448EF3;

}

input{

border: 1px solid #448EF3;

color: #448EF3;

font-weight:bold;

font-family: "微软雅黑";

height: 35px;

line-height: 30px;

border-radius:5px;

}

.submit {

width: 150px;

height: 40px;

cursor :hand;

font-size: 20px;

color: #ffffff;

background-color: #448EF3;

border: 0px;

}

.thead {

height: 40px; background : #90BFFF;

font-family: "微软雅黑";

font-size: 30px;

font-weight: 700;

color: #ffffff;

background: #90BFFF;

}

#3{

margin-bottom: 100px;

}

代码如下:function ChkAllClick(sonName, cbAllId){

var arrSon = document.getElementsByName(sonName);

var cbAll = document.getElementById(cbAllId);

var tempState=cbAll.checked;

for(i=0;i

if(arrSon[i].checked!=tempState)

arrSon[i].click();

}

}

function ChkSonClick(sonName, cbAllId) {

var arrSon = document.getElementsByName(sonName);

var cbAll = document.getElementById(cbAllId);

for(var i=0; i

if(!arrSon[i].checked) {

cbAll.checked = false;

return;

}

}

cbAll.checked = true;

}

function ChkOppClick(sonName){

var arrSon = document.getElementsByName(sonName);

for(i=0;i

arrSon[i].click();

}

}

function changeBgColor(btn){

var btn = document.getElementById(btn);

btn.style.backgroundColor = "#90BFFF"

}

function recoverBgColor(btn){

var btn = document.getElementById(btn);

btn.style.backgroundColor = "#448EF3"

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。