码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript-4.7-friendly_table---ShinePans

时间:2014-07-08 15:08:33      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   2014   cti   

<html>
	<head>
		<meta http-equiv="content-type" content="text/html;charset=GB2312"/>
		<title> 4.6 人性化表单 </title>
		<!--脚本部分-->
		<script type="text/javascript">
			function $(str) {return(document.getElementById(str));}
			function check_submit(){
				if($("txt_user_name").value==""){alert("请填写用户名");return(false);}
				if($("txt_user_pass").value==""){alert("请输入密码");return(false);}
				if($("txt_user_pass_confirm").value=="") {alert("请输入确认密码");return(false);}
				$("submit_button").disabled=true;
				return(false);
				}
				function mover(){
					event.srcElement.focus();
					event.srcElement.select();
					}
					function mblur(){
						if(event.srcElement.value=="") event.srcElement.value="[输入用户名]";
						}
					function mclick(){
						if(event.srcElement.value=="[请输入用户名]") event.srcElement.value="";
						}
					</script>
				</head>
				<body style="overflow:auto;">
					<form action="" onsubmit="return check_submit();">
						用户名: <br>
						<input id="txt_user_name" onmouseover="mover();
						onclick="mclick();" onblur="mblur();" value="[请输入用户名]"><br>
						密码: <br>
					  <input id="txt_user_pass" type="password" onmouseover="mover();" value="默认密码"><br>
					  确认密码:<br>
					  <input id="txt_user_pass_conform" type="password" onmouseover="mover();" value="默认密码"><br>
					  <input type="submit" calue="提交" id=submit_button">
					</form>
				</body>
			</html>



bubuko.com,布布扣

JavaScript-4.7-friendly_table---ShinePans,布布扣,bubuko.com

JavaScript-4.7-friendly_table---ShinePans

标签:style   blog   http   java   2014   cti   

原文地址:http://blog.csdn.net/shinepan/article/details/37505379

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!