我打算将表格的特定单元格复制到另一页面,我确实尝试过复制。但是,我只能复制整个表而不是特定的单元格。我有下面的示例代码。
例如,我有
checkoutList
我希望将此内容复制到我的Delete btn
,但不包括<table id="myList">
<thead>
<tr>
<td>Product Name</td>
<td>Qty</td>
<td>Price</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
,这是最后一个单元格。我可以知道怎么做吗?
<table id="checkoutList">
</table>
此表格将填充复制的内容
function copyTable() {
window.location.href = "#/app/checkOut";
//copyTable
var source = document.getElementById('myList');
var destination = document.getElementById('checkoutList');
var copy = source.cloneNode(true);
copy.setAttribute('id', 'checkoutList');
destination.parentNode.replaceChild(copy, destination);
}
这是我的复制表功能。
router.get('/record_enrich_quick/:quick', function(req, res) {
console.trace();
var json_struct={};
json_struct["start_time"]=req.params.quick;
json_struct["end_time"]="now";
json_struct["cookie"]=Math.random().toString();
var data=JSON.stringify(json_struct);
var args={
data:data,
headers: { "Content-Type": "application/json" }
}
//var Rest = require('node-rest-client').Client;
//var client=new Rest();
de_rest_client.post("http://localhost:8080/recordenrich",args,function(data,response){
res.end("reqest ends ");//This is was what made everything work
});
});
答案 0 :(得分:0)
您正在寻找.children属性。