***这是我前两天帮别人写的表单验证例子,主要还是html的部分,里面用了一点点Bootstrap的东西,希望能帮到你
*/
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />
<title>雇员注册表单demo</title>
<!-- 新 Bootstrap 核心 CSS 文件 -->
<link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css">
<!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
<script src="http://cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container" style="margin-top: 30pxmargin-bottom: 30px">
<div class="col-xs-12" style="width:90%margin-left: 5%">
<div class="col-xs-12" style="background: rgb(116, 146, 112)color: #ffffont-weight: boldpadding-left: 10pxpadding-right: 10pxheight: 60pxpadding-top: 10px">
<div class="col-xs-3"><hr/></div>
<div class="col-xs-6" style="font-size: 24pxtext-align: centerpadding-top:2px">雇员注册表单</div>
<div class="col-xs-3"><hr/></div>
</div>
<div class="col-xs-12" style="background: #F3F3F3font-size:1em">
<div class="col-xs-12" style="margin-top:20px">
<div class="col-xs-4" style="text-align: right">雇员编号</div>
<div class="col-xs-8"><input type="text" id="numbers"></div>
</div>
<div class="col-xs-12" style="margin-top:10px">
<div class="col-xs-4" style="text-align: right">雇员姓名</div>
<div class="col-xs-8"><input type="text" id="name"></div>
</div>
<div class="col-xs-12" style="margin-top:10px">
<div class="col-xs-4" style="text-align: right">雇员工作</div>
<div class="col-xs-8"><textarea rows="3" cols="20" id="work"></textarea></div>
</div>
<div class="col-xs-12" style="margin-top:10px">
<div class="col-xs-4" style="text-align: right">雇佣日期</div>
<div class="col-xs-8"><input type="date" id="time"></div>
</div>
<div class="col-xs-12" style="margin-top:10px">
<div class="col-xs-4" style="text-align: right">基本工资</div>
<div class="col-xs-8"><input type="text" id="wages"></div>
</div>
<div class="col-xs-12" style="margin-top:10px">
<div class="col-xs-4" style="text-align: right">奖金</div>
<div class="col-xs-8"><input type="text" id="bonus"></div>
</div>
<div class="col-xs-12" style="margin-top: 30pxmargin-bottom: 50pxtext-align: center">
<button style="background: rgb(116, 146, 112)width:120pxheight: 40pxborder: 0px nonefont-weight: boldcolor:#fff" id="button">提交表单</button>
</div>
</div>
</div>
</div>
</body>
<script>
$("#button").on('click',function(){
var $numbers = $('#numbers').val(),
$name = $('#name').val(),
$work = $('#work').val(),
$time = $('#time').val(),
$bonus = $('#bonus').val(),
$wages = $('#wages').val()
if(isNaN($numbers)){
alert("编号只能是数字")
return
}
if($name == '' || $name.length == 0){
alert("姓名不能为空")
return
}
if($work == '' || $work.length == 0){
alert("工作不能为空")
return
}
if(!isNaN($bonus)){
var dot = $bonus.indexOf(".")
if(dot != -1){
var dotCnt = $bonus.substring(dot+1,$bonus.length)
if(dotCnt.length != 2 ){
alert("必须满足小数点后两位")
return
}
}
}else{
alert("必须为数字")
return
}
if(!isNaN($wages)){
var dot = $wages.indexOf(".")
if(dot != -1){
var dotCnt = $wages.substring(dot+1,$wages.length)
if(dotCnt.length != 2 ){
alert("必须满足小数点后两位")
return
}
}
}else{
alert("必须为数字")
return
}
})
</script>
</html>
<html>
<head>
<title>第一个html网页</title>
<metacharset="utf-8">
</head>
<body>
</body>
</html>
<html>
<head>
<title>第一个html网页</title>
<metacharset="utf-8">
</head>
<body>
<table>
<tr>
<td>第一行第一列</td>
<td>第一行第二列</td>
</tr>
<tr>
<td>第二行第一列</td>
<td>第二行第二列</td>
</tr>
</table>
</body>
</html>
扩展资料
HTML语言特点
1、HTML语法较弱。
在w3c制定的HTML5规范中,对于HTML5在语法结构上的规格限制是较松散的,如、或在浏览器中具有同样的功能,是不区分大小写的。另外,也没有严格要求每个控制标记都要有相对应的结束控制标记。
2、HTML5编写简单。
即使用户没有任何编程经验,也可以轻易使用HTML来设计网页,HTML5的使用只需将文本加上一些标记(Tags)即可。
3、HTML标记数目有限。
在w3C所建议使用的HTML5规范中,所有控制标记都是固定的且数目是有限的。固定是指控制标记的名称固定不变,且每个控制标记都已被定义过,其所提供的功能与相关属性的设置都是固定的。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)