1
大家好,我繪製動態表,我想添加標題爲表如何頭部添加到這裏動態表是我的表碼:如何添加頁眉動態表
$.get('http://myDomain.com/RIA/topIndiaDetails.asp', function(data)
{
console.log("####"+data);
var up = new Image();
var down = new Image();
up.src = "../../jquery.mobile/images/up.png";
down.src = "../../jquery.mobile/images/down.png"
substr = data.split('$');
//alert(substr.length);
//var theader = '<table border="1">\n';
//<table id="auditOverview" border="1">
var theader = '<table border="1" id=\"tableId\">\n';
var tbody = '';
for (var out = 1;out<substr.length-1;out++)
{
//alert(substr[out]);
tbody += '<tr>';
var pra = substr[out].split('|^');
//alert('pra.length is: '+pra.length);
for (var i=0;i<pra.length-1;i++)
{
tbody += '<td>';
if (pra[i]=="Red")
{
pra[i].append("<img id='theImg' src='../../jquery.mobile/images/down.png'/>");
}
else if (pra[i]=="Green")
{
pra[i].append("<img id='theImg' src='../../jquery.mobile/images/up.png'/>");
}
tbody += pra[i];
tbody += '</td>'
}
tbody += '</tr>\n';
}
var tfooter = '</table>';
document.getElementById('wrapper').innerHTML = theader + tbody + tfooter;
});
任何幫助將不勝感激。提前致謝。
@Govind感謝後期編輯 – PPD
你在表或別的東西 – Rab
談論''
回答
如果我能得到你的觀點正確
DEMO:http://jsfiddle.net/75zFX/8/
來源
2012-06-16 10:56:31 Rab
在這裏,我嘗試http://jsfiddle.net/pramodD/75zFX/7/,但它不起作用。 – PPD
你用錯了。看到這個http://jsfiddle.net/75zFX/8/ – Rab
@ COde感謝它的完美。謝謝 – PPD
你可以建立你的頭:
然後:
來源
2012-06-16 10:54:35
@ Mateusz謝謝你的迴應。 – PPD
如果你想手動添加頭到表中,使用這個代碼。
JSP
的JavaScript
來源
2015-02-20 16:23:42
相關問題