两个表格数据双击相互转换

<!-- td { line-height: 20px; height:20px; } .style2 {color: #FF0000} --> 序号 商品ID 商品编码 商品名称 商品描述 商品数量 操作选择
1 1000 3003 电视(康佳) 21寸 yanleigis
2 200 3004 电视(长虹) 44寸 landgis





已选择的商品

序号 商品ID 商品编码 商品名称 商品描述 商品数量 操作选择

<html>
<head>
<title>两个表格数据双击相互转换 by yanleigis Email:[email protected]</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="css/style.css" rel="stylesheet" type="text/css">
<style type="text/css">
td {
line-height: 20px;
height:20px;
}
.style2 {color: #FF0000}
</style>
</head>

<body bgcolor="#E7E7F7" text="#000000">

<table width="609" border="1" class="tabout" id="ylTable1" onDblClick="yldbclick(ylTable2)" name="conditionTable" cellspacing="0" bordercolor="#0099cc" style="border-collapse:collapse;">
<tr bgcolor="#00FF99">
<th width="28" nowrap class="thlist style2">序号</th>
<th width="51" nowrap class="thlist style2">商品ID</th>
<th width="59" nowrap class="thlist style2">商品编码</th>
<th width="111" nowrap class="thlist style2">商品名称</th>
<th width="177" nowrap class="thlist style2">商品描述</th>
<th width="62" nowrap class="thlist style2">商品数量</th>
<th width="91" nowrap class="thlist style2">操作选择</th>
</tr>
<tr>
<td width="28" height="21">1</td>
<td width="51" height="21">1000</td>
<td width="59" height="21">3003</td>
<td width="111" height="21" >电视(康佳)</td>
<td width="177" height="21">21寸 yanleigis</td>
<td width="62"><input type="text" name="yanlei4" value="10" size="5"/></td>
<td width="91"><input type="checkbox" name="yanlei3" value="23344" checked /></td>
</tr>
<tr>
<td width="28">2</td>
<td width="51">200</td>
<td width="59">3004</td>
<td width="111">电视(长虹)</td>
<td width="177">44寸 landgis</td>
<td width="62"><input type="text" name="yanlei2" value="10" size="5"/></td>
<td width="91"><input type="checkbox" name="yanleil" value="23344" checked /></td>
</tr>
</table>

<br>
<br>
<br>
<br>
已选择的商品
<table width="609" border="1" name="testTable" id="ylTable2" onDblClick="yldbclick(ylTable1)" cellspacing="0" style="border-collapse:collapse;" bordercolor="#0099cc">
<tr bgcolor="#33FFCC">
<th width="28" nowrap class="thlist style2">序号</th>
<th width="51" nowrap class="thlist style2">商品ID</th>
<th width="59" nowrap class="thlist style2">商品编码</th>
<th width="111" nowrap class="thlist style2">商品名称</th>
<th width="177" nowrap class="thlist style2">商品描述</th>
<th width="62" nowrap class="thlist style2">商品数量</th>
<th width="91" nowrap class="thlist style2">操作选择</th>
</tr>
</table>
<Script language="JavaScript">
function yldbclick(testTable)
{
var obj=event.srcElement;

if (obj.tagName!="TD")return;

while(obj=obj.parentElement)
{
if(obj.tagName=="TR"||obj.tagName=="TD")
break;

return;
}

testTable.insertRow().appendChild(obj);


}

</Script>

</body>
</html>

<script type="text/javascript"></script>

<script type="text/javascript"></script>

<script type="text/javascript"><!-- &lt;html&gt; <br /> &lt;head&gt; <br /> &lt;title&gt;两个表格数据双击相互转换 by yanleigis Email:[email protected]&lt;/title&gt; <br /> &lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312"&gt; <br /> &lt;link href="css/style.css" rel="stylesheet" type="text/css"&gt; <br /> &lt;style type="text/css"&gt; <br /> td { <br /> line-height: 20px; <br /> height:20px; <br /> } <br /> .style2 {color: #FF0000}<br /> &lt;/style&gt; <br /> &lt;/head&gt; <br /> <br /> &lt;body bgcolor="#E7E7F7" text="#000000"&gt; <br /> <br /> &lt;table width="609" border="1" class="tabout" id="ylTable1" onDblClick="yldbclick(ylTable2)" name="conditionTable" cellspacing="0" bordercolor="#0099cc" style="border-collapse:collapse;"&gt; <br /> &lt;tr bgcolor="#00FF99"&gt; <br /> &lt;th width="28" nowrap class="thlist style2"&gt;序号&lt;/th&gt; <br /> &lt;th width="51" nowrap class="thlist style2"&gt;商品ID&lt;/th&gt; <br /> &lt;th width="59" nowrap class="thlist style2"&gt;商品编码&lt;/th&gt; <br /> &lt;th width="111" nowrap class="thlist style2"&gt;商品名称&lt;/th&gt; <br /> &lt;th width="177" nowrap class="thlist style2"&gt;商品描述&lt;/th&gt; <br /> &lt;th width="62" nowrap class="thlist style2"&gt;商品数量&lt;/th&gt; <br /> &lt;th width="91" nowrap class="thlist style2"&gt;操作选择&lt;/th&gt; <br /> &lt;/tr&gt; <br /> &lt;tr&gt; <br /> &lt;td width="28" height="21"&gt;1&lt;/td&gt; <br /> &lt;td width="51" height="21"&gt;1000&lt;/td&gt; <br /> &lt;td width="59" height="21"&gt;3003&lt;/td&gt; <br /> &lt;td width="111" height="21" &gt;电视(康佳)&lt;/td&gt; <br /> &lt;td width="177" height="21"&gt;21寸 yanleigis&lt;/td&gt; <br /> &lt;td width="62"&gt;&lt;input type="text" name="yanlei4" value="10" size="5"/&gt;&lt;/td&gt;<br /> &lt;td width="91"&gt;&lt;input type="checkbox" name="yanlei3" value="23344" checked /&gt;&lt;/td&gt;<br /> &lt;/tr&gt; <br /> &lt;tr&gt; <br /> &lt;td width="28"&gt;2&lt;/td&gt; <br /> &lt;td width="51"&gt;200&lt;/td&gt; <br /> &lt;td width="59"&gt;3004&lt;/td&gt; <br /> &lt;td width="111"&gt;电视(长虹)&lt;/td&gt; <br /> &lt;td width="177"&gt;44寸 landgis&lt;/td&gt; <br /> &lt;td width="62"&gt;&lt;input type="text" name="yanlei2" value="10" size="5"/&gt;&lt;/td&gt;<br /> &lt;td width="91"&gt;&lt;input type="checkbox" name="yanleil" value="23344" checked /&gt;&lt;/td&gt; <br /> &lt;/tr&gt; <br /> &lt;/table&gt; <br /> <br /> &lt;br&gt; <br /> &lt;br&gt; <br /> &lt;br&gt; <br /> &lt;br&gt; <br /> 已选择的商品 <br /> &lt;table width="609" border="1" name="testTable" id="ylTable2" onDblClick="yldbclick(ylTable1)" cellspacing="0" style="border-collapse:collapse;" bordercolor="#0099cc"&gt; <br /> &lt;tr bgcolor="#33FFCC"&gt; <br /> &lt;th width="28" nowrap class="thlist style2"&gt;序号&lt;/th&gt; <br /> &lt;th width="51" nowrap class="thlist style2"&gt;商品ID&lt;/th&gt; <br /> &lt;th width="59" nowrap class="thlist style2"&gt;商品编码&lt;/th&gt; <br /> &lt;th width="111" nowrap class="thlist style2"&gt;商品名称&lt;/th&gt; <br /> &lt;th width="177" nowrap class="thlist style2"&gt;商品描述&lt;/th&gt; <br /> &lt;th width="62" nowrap class="thlist style2"&gt;商品数量&lt;/th&gt; <br /> &lt;th width="91" nowrap class="thlist style2"&gt;操作选择&lt;/th&gt; <br /> &lt;/tr&gt; <br /> &lt;/table&gt; <br /> &lt;Script language="JavaScript"&gt; <br /> function yldbclick(testTable)<br />{<br />var obj=event.srcElement; // --></script>

<script type="text/javascript"><!-- while(obj=obj.parentElement)<br />{<br />if(obj.tagName=="TR"||obj.tagName=="TD")<br />break; // --></script>

<script type="text/javascript"><!-- return;<br />} // --></script>

<script type="text/javascript"><!-- testTable.insertRow().appendChild(obj); // --></script>

<script type="text/javascript"><!-- <br />}<br /> <br /> &lt;/Script&gt;<br /> // --></script>

<script type="text/javascript"><!-- &lt;/body&gt; <br /> &lt;/html&gt; <br /> // --></script>

你可能感兴趣的:(转换)