查看該問題的代碼中的評論:jQuery tr(錶行)對象不能被使用兩次/多次?
從json對象動態創建的j對象的tr對象不能被使用兩次以追加到不同的表中?
function myfunc(obj)
{
//obj is JSON object
jQuery('#ClientInfo').html('');
jQuery('#clientListTable2G').html('');
jQuery.each(obj, function(key, objClient) {
var tr = jQuery('<tr>').append(
jQuery('<td>').text(objClient.hostname),
jQuery('<td>').text(objClient.mac),
jQuery('<td>').text(objClient.rssi),
jQuery('<td>').text("Wifi 2.4G"),
jQuery('<td>').text(objClient.ip)
).appendTo('#ClientInfo');
/* HERE IS THE QUESTION */
//If i uncomment below line than the #ClientInfo becomes blank and the tr row fills in #clientListTable2G only
//jQuery('#clientListTable2G').append(jQuery(tr));
});
}
其中是關閉tr ??? –
我不確定在此語法中是否必須要求結束標記。但如果只附加在一個表中,則工作。 –