zl程序教程

您现在的位置是:首页 >  后端

当前栏目

拖动table标题实现改变td的大小(css+js代码)

JSCSS代码 实现 Table 改变 大小 标题
2023-06-13 09:14:50 时间
复制代码代码如下:

<html>
<title>拖动列宽的表格</title>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<styletype="text/css"><!--
.bgtd{
font-size:12px;
text-align:left;
line-height:15px;
height:20px;
}
.bgtd.tit{
background-color:#e2e2e2;
height:17px;
text-align:center;
line-height:15px;
}
.bgtd.num{
background-color:#e2e2e2;
text-align:right;
line-height:15px;
width:30px;
height:22px;
}
.resizeDivClass{
text-align:right;
width:1px;
margin:0px00px0;
background:#fff;
border:0px;
float:right;
cursor:e-resize;
}
--></style>
<scriptlanguage="javascript"><!--
functionMouseDownToResize(obj){
setTableLayoutToFixed();
obj.mouseDownX=event.clientX;
obj.pareneTdW=obj.parentElement.offsetWidth;
obj.pareneTableW=theObjTable.offsetWidth;
obj.setCapture();
}
functionMouseMoveToResize(obj){
if(!obj.mouseDownX)returnfalse;
varnewWidth=obj.pareneTdW*1+event.clientX*1-obj.mouseDownX;
if(newWidth>10)
{
vartheObjTable=document.getElementById("theObjTable");
obj.parentElement.style.width=newWidth;
theObjTable.style.width=obj.pareneTdW*1+event.clientX*1-obj.mouseDownX;
}
}
functionMouseUpToResize(obj){
obj.releaseCapture();
obj.mouseDownX=0;
}
functionsetTableLayoutToFixed()
{
vartheObjTable=document.getElementById("theObjTable");
if(theObjTable.style.tableLayout=="fixed")return;
varheaderTr=theObjTable.rows[0];
for(vari=0;i<headerTr.cells.length;i++)
{
headerTr.cells[i].styleOffsetWidth=headerTr.cells[i].offsetWidth;
}
for(vari=0;i<headerTr.cells.length;i++)
{
headerTr.cells[i].style.width=headerTr.cells[i].styleOffsetWidth;
}
theObjTable.style.tableLayout="fixed";
}
functiontheObjTable(o,a,b,c){
vart=document.getElementById(o).getElementsByTagName("tr");
for(vari=0;i<t.length;i++){
t[i].style.backgroundColor=(t[i].sectionRowIndex%2==0)?a:b;
t[i].onclick=function(){
if(this.x!="1"){
}else{
this.x="0";
this.style.backgroundColor=(this.sectionRowIndex%2==0)?a:b;
}
}
t[i].onmouseover=function(){
if(this.x!="1")this.style.backgroundColor=c;
}
t[i].onmouseout=function(){
if(this.x!="1")this.style.backgroundColor=(this.sectionRowIndex%2==0)?a:b;
}
}
}
//--></script>
<body>
<tablewidth="100%"class="bg"border=1cellspacing=0bordercolorlight="#7b7b7b"bordercolordark="#efefef"id="theObjTable">
<tr>
<tdclass="num">序号</td>
<tdwidth="100px"class="tit">
<spanclass="resizeDivClass"onMouseDown="MouseDownToResize(this);"onMouseMove="MouseMoveToResize(this);"onMouseUp="MouseUpToResize(this);"></span>
公司名称
</td>
<tdclass="tit">
<spanclass="resizeDivClass"onMouseDown="MouseDownToResize(this);"onMouseMove="MouseMoveToResize(this);"onMouseUp="MouseUpToResize(this);"></span>
订单客户
</td>
<tdclass="tit">
<spanclass="resizeDivClass"onMouseDown="MouseDownToResize(this);"onMouseMove="MouseMoveToResize(this);"onMouseUp="MouseUpToResize(this);"></span>
部门
</td>
<tdclass="tit">
<spanclass="resizeDivClass"onMouseDown="MouseDownToResize(this);"onMouseMove="MouseMoveToResize(this);"onMouseUp="MouseUpToResize(this);"></span>
业务员
</td>
<tdclass="tit">
<spanclass="resizeDivClass"onMouseDown="MouseDownToResize(this);"onMouseMove="MouseMoveToResize(this);"onMouseUp="MouseUpToResize(this);"></span>
交款方式
</td>
</tr>
<tr>
<tdclass="num">1</td>
<td>中国电信</td>
<td>订单客户名称</td>
<td>广告部</td>
<td>王天一</td>
<td>现金</td>
</tr>
<tr>
<tdclass="num">2</td>
<td>中国移动</td>
<td>订单客户名称</td>
<td>营销部</td>
<td>李小红</td>
<td>信用卡</td>
</tr>
<tr>
<tdclass="num">3</td>
<td>中国联通</td>
<td>订单客户名称</td>
<td>市场部</td>
<td>王老二</td>
<td>银行卡</td>
</tr>
</table>
<scriptlanguage="javascript"><!--
//senfe("表格名称","奇数行背景","偶数行背景","鼠标经过背景","点击后背景");
theObjTable("theObjTable","#c0c0c0","#fff","#a3a2a2");
//--></script>
</body>
</html>