求html前段开发案例

求html前段开发案例,第1张

/*

***这是我前两天帮别人写的表单验证例子,主要还是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做个表格的步骤如下:

1、首先新建一个html,点击<body></body>中间,先填入表格内容;

2、内容根据需求来写即可,示例代码如下:

<table>

<p style="text-align:center ">功课表</p>

<tr>

<th>语文</th>

<td>7:00-7:40</td>

<td>7:50-8:30</td>

</tr>

<tr>

<th>数学</th>

<td>7:00-7:40</td>

<td>7:50-8:30</td>

</tr>

<tr>

<th>英文</th>

<td>7:00-7:40</td>

<td>7:50-8:30</td>

</tr>

</table>

3、然后在<head></head>中间输入样式表的样式;

4、样式也根据个人的需求来设置即可,设置单元格的宽度高度,合并单元格,位置,颜色等等,示例代码如下:

<style type="text/css">

body

{

width:340px

height :800px

}

table

{

border-collapse :collapse

}

th,td

{

width:100px

height:40px

border :1px solid black

font-size:12px

text-align :center

}   

</style>

5、这里需要注意这个代码“table”的意义是将表格边框合并为单一的边框,将相邻变合并。

6、预览结果如下所示,一个简单的表格就制作出来了。

可以借助属相valign来实现。实例如下:

<html>

<body>

<table border="1">

<tr>

<td width="100px" height="50px" valign="top">测试</td>

</tr>

</table>

</body>

</html>

效果如下:

补充知识:

valign的值有:top(顶对齐)

Middle(垂直居中)

bottom(底对齐)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7010327.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-31
下一篇 2023-03-31

发表评论

登录后才能评论

评论列表(0条)

保存