好好学一遍javaScript 笔记(四)——Attribute、HTML元素、文档碎(3)
来源:未知 责任编辑:责任编辑 发表时间:2015-10-08 14:16 点击:次
oTable.appendChild(oTBody);
//属性操作
oTBody.insertRow(0);
oTBody.rows[0].insertCell(0);
oTBody.rows[0].cells[0].appendChild(document.createTextNode("胡斐(土匪)"));
oTBody.rows[0].insertCell(1);
oTBody.rows[0].cells[1].appendChild(document.createTextNode("胜男(剩男)"));
oTBody.insertRow(1);
oTBody.rows[1].insertCell(0);
oTBody.rows[1].cells[0].appendChild(document.createTextNode("无忌"));
oTBody.rows[1].insertCell(1);
oTBody.rows[1].cells[1].appendChild(document.createTextNode("赵敏"));
//直接创建table主体
var oTr = document.createElement("tr");
oTBody.appendChild(oTr);
var oTd1 = document.createElement("td");
oTd1.appendChild(document.createTextNode("杨过"));
oTr.appendChild(oTd1);
var oTd2 = document.createElement("td");
oTd2.appendChild(document.createTextNode("小阿姨"));
oTr.appendChild(oTd2);
document.body.appendChild(oTable);
}
摘自 旦旦而学的专栏
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>