展开全部
var table = document.createElement("table");
table.width = "100%";
table.style.borderCollapse = "collapse";
table.style.borderSpacing = 0;
var tbody = document.createElement("tbody");
table.appendChild(tbody);
tbody.insertRow(0);
tbody.rows[0].insertCell(0);
tbody.rows[0].cells[0].colSpan = 4;
tbody.rows[0].cells[0].style.textAlign = 'center';
tbody.rows[0].cells[0].style.color = "red";
tbody.rows[0].cells[0].style.fontSize = "22px";
tbody.rows[0].cells[0].style.border = "1px solid #ccc";
tbody.rows[0].cells[0].appendChild(document.createTextNode("周更生个人简历"));
var textArr = [['姓名:','周更生','性别:','男'],['年龄:','34岁','学历:','大专'],['毕业时间:','2005年7月','毕业学校:','北京科技大学']];
for (var i = 0; i < 3; i++) {
tbody.insertRow(i+1);
for (var j = 0; j < 4; j++) {
tbody.rows[i+1].insertCell(j);
tbody.rows[i+1].cells[j].style.border = "1px solid #ccc";
if (j%2==0) {
tbody.rows[i+1].cells[j].style.textAlign = "right";
tbody.rows[i+1].cells[j].style.fontWeight = "bold";
}
tbody.rows[i+1].cells[j].appendChild(document.createTextNode(textArr[i][j]));
};
}
document.body.appendChild(table);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |