td单元格中含有input 时的colspan属性

[size=24][color=red]1.如下所示的代码,input输入框并不会占三列,好像colspan不起作用[/color][/size]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>
<BODY>
<table border=2>
<tr>
<td >项目名称</td>
<td ><input type="text" name="projectName" value="" ></td>
<td >项目编号</td>
<td ><input type="text" name="projectCode" value=""></td>
</tr>
<tr>
<td >生产令号</td>
<td colspan=3><input type="text" name="productNo" value="5" ></td>
</tr>
</table>
</BODY>
</HTML>
[size=24][color=red]2.只有在input的属性中加入如下代码才行style="width:100%",下面是完整代码[/color][/size]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>
<BODY>
<table border=2>
<tr>
<td >项目名称</td>
<td ><input type="text" name="projectName" value="" ></td>
<td >项目编号</td>
<td ><input type="text" name="projectCode" value=""></td>
</tr>
<tr>
<td >生产令号</td>
<td colspan=3><input type="text" name="productNo" value="5" [size=18][color=red]style="width:100%"[/color][/size]></td>
</tr>
</table>
</BODY>
</HTML>
要实现拖拽列排序,你需要使用JavaScript来处理拖拽事件。以下是大致的实现方法: 1. 给表格每个单元格添加一个事件监听器,监听mousedown,mouseup和mousemove事件。 2. 当用户在表头的单元格上按下鼠标,记录下当前单元格的列号和位置信息,并且创建一个新的占位符单元格。 3. 当用户移动鼠标,在占位符单元格后面创建一个虚拟的拖拽线,并且根据鼠标位置改变虚拟线的位置。 4. 当用户在表头的单元格上松开鼠标,根据占位符单元格的位置信息更新表格单元格位置,并且删除占位符单元格和虚拟拖拽线。 以下是一个基本的实现代码示例(仅供参考): ```html <table> <thead> <tr> <th onmousedown="startDrag(event, 0)">列1</th> <th onmousedown="startDrag(event, 1)">列2</th> <th onmousedown="startDrag(event, 2)">列3</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> <tr> <td>4</td> <td>5</td> <td>6</td> </tr> </tbody> </table> <script> var dragCell = null; var dragLine = null; var placeholderCell = null; function startDrag(event, col) { dragCell = event.target; placeholderCell = dragCell.cloneNode(true); placeholderCell.style.visibility = 'hidden'; dragLine = document.createElement('div'); dragLine.className = 'drag-line'; document.body.appendChild(dragLine); document.body.appendChild(placeholderCell); document.addEventListener('mousemove', doDrag); document.addEventListener('mouseup', endDrag); } function doDrag(event) { dragLine.style.left = event.clientX + 'px'; placeholderCell.style.left = event.clientX + 'px'; placeholderCell.style.top = dragCell.offsetTop + 'px'; for (var i = 0; i < dragCell.parentNode.children.length; i++) { var cell = dragCell.parentNode.children[i]; if (cell !== dragCell && cell.getBoundingClientRect().left < event.clientX) { dragCell.parentNode.insertBefore(placeholderCell, cell.nextSibling); break; } } } function endDrag(event) { dragCell.parentNode.insertBefore(dragCell, placeholderCell); document.body.removeChild(dragLine); document.body.removeChild(placeholderCell); dragCell = null; dragLine = null; placeholderCell = null; document.removeEventListener('mousemove', doDrag); document.removeEventListener('mouseup', endDrag); } </script> ``` 注意,这只是一个基本的实现,还有很多细节需要考虑,例如当表格存在合并单元格,需要特殊处理。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值