jquery+bootstrap 实现table表格增删改查效果代码

代码语言:html

所属分类:表格

代码描述:jquery+bootstrap 实现table表格增删改查效果代码

代码标签: 表格 删改 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
<style>
    @charset "utf-8";
/*=========================Reset_start==========================*/
body,h1,h2,h3,h4,h5,h6,div,p,dl,dt,dd,ol,ul,li,form,table,th,td,a,img,span,strong,var,em,input,textarea,select,option{margin: 0; padding: 0;}
html,body{font-family:"Microsoft YaHei","SimSun","Arail","Tabhoma";text-align: left;}
ul,ol{list-style: none;}
body{background: #f6f6f6;}
img{border: 0 none;}
input,select,textarea{outline:0;}
textarea{resize:none; overflow: auto;}
table{border-collapse: collapse; border-spacing: 0;}
th,strong,var,em{font-weight: normal; font-style: normal;}
a{text-decoration: none;}
a:link{color:#479eff;}
a:visited{color:#479eff;}
a:hover{}
/*a:hover{text-decoration:underline;}*/
/*a:active{color:#07780e;}*/
*{margin: 0; padding: 0;}


.clear:after{
    content: '';
    display: block;
    clear: both;
}

.box{
	max-width: 1400px;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 20px 0;
	background: #fff;
}

.title{
	padding: 12px 0;
	width: 100%;
	margin: 20px 0 50px 0;
	font-size: 18px;
	color: #fff;
	text-align: center;
	background: #3ea2ee;
}

.content{
	padding: 0 15px;
}

	
.content_width{
	max-width:100% !important;
	padding: 0 !important;
}


.line{
	width: 100%;border-bottom: 1px solid #dfdfdf;margin-bottom: 20px;
}

.person_search{
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #fff;
	margin:20px 0;
	padding-bottom: 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.search_input{
	/*width: 200px;*/
	height:35px;
	line-height: 35px;
	margin: 15px 10px 0 0;
	float: left;
}

.search_input span{
	margin-left: 15px;
	font-size: 13px;
	color: #666;
	display: inline-block;
	float: left;
}

.search_input input{
	/*width: 1%;*/
	width:180px;
    height: 35px;
	border: 1px solid #dfdfdf;
	border-radius: 3px !important;
	padding: .0rem .75rem;
    font-size: 13px;
    color: #dfdfdf !important;
    line-height: 35px;
    display: inline-block;
}

.search_submit{
	margin: 15px 5px 0 0;
}

.search_input .search_btn{
	width: 80px;
	height: 35px;
	font-size: 13px;
	background: #3ea2ee;
	border: none;
	border-radius: 3px;
	padding: .0rem .75rem;
	margin-left: 15px;
    line-height: 1.0;
    margin-bottom: 0.4rem;
}

.search_submit input[type='button']{
	width: 80px;
	height: 35px;
	font-size: 13px;
	background: #3ea2ee;
	border: none;
	border-radius: 3px;
	padding: .0rem .75rem;
	margin-left: 15px;
    line-height: 1.0;
}

.search_submit input[type='reset']{
	width: 80px;
	height: 35px;
	color: #3ea2ee;
	font-size: 13px;
	background: none;
	border: 1px solid #3ea2ee;
	border-radius: 3px;
	padding: .0rem .75rem;
    line-height: 1.0;
}

.modal-footer{
	margin-top: 30px;
	text-align: center !important;
}

.modal-footer button:nth-child(1){
	color: #3ea2ee;
	border: 1px solid #3ea2ee;
}

.modal-footer button:nth-child(2){
	color: #fff;
	background: #3ea2ee !important;
}

.modal-footer button:nth-child(2):hover{
	color: #fff;
	background: #3ea2ee !important;
}


-moz-input-placeholder {
         color: #666666 !important;
        font-size: 12px;
     }

-webkit-input-placeholder {
         color: #dfdfdf !important;
        font-size: 12px;
     }
     
-o-input-placeholder {
         color: #666666 !important;
        font-size: 12px;
     }     
-ms-input-placeholder {
         color: #666666 !important;
        font-size: 12px;
     } 


.person_content{
	width: 100%;
	height: auto;
	background: #fff;
	padding: 15px 15px;
	border-radius: 5px;
	-webkit-bord.........完整代码请登录后点击上方下载按钮下载查看

网友评论0