JS创建自定义表格具体实现
时间:2023-02-25 11:44:46|栏目:JavaScript代码|点击: 次
JS部分:
function next() {
//得到table对象
var oTable = document.getElementById("table1");
//插入tr
var oTr = oTable.insertRow();
//一行tr插入3个td
var oTd1 = oTr.insertCell();
var oTd2 = oTr.insertCell();
var oTd3 = oTr.insertCell();
//指定td内容
oTd1.innerHTML = "@process_time显示处理某个页面所需要的时间";
oTd2.innerHTML = "无需设置参数";
oTd3.innerHTML = "无需设置参数值";
}
JSP:
<table style="width:700px;" id="table1">
<thead >
<tr>
<th>
参数描述
</th>
<th>
包含此参数
</th>
<th>
参数值
</th>
</tr>
</thead>
</table>
复制代码 代码如下:
function next() {
//得到table对象
var oTable = document.getElementById("table1");
//插入tr
var oTr = oTable.insertRow();
//一行tr插入3个td
var oTd1 = oTr.insertCell();
var oTd2 = oTr.insertCell();
var oTd3 = oTr.insertCell();
//指定td内容
oTd1.innerHTML = "@process_time显示处理某个页面所需要的时间";
oTd2.innerHTML = "无需设置参数";
oTd3.innerHTML = "无需设置参数值";
}
JSP:
复制代码 代码如下:
<table style="width:700px;" id="table1">
<thead >
<tr>
<th>
参数描述
</th>
<th>
包含此参数
</th>
<th>
参数值
</th>
</tr>
</thead>
</table>
栏 目:JavaScript代码
下一篇:js获取网页高度(详细整理)
本文标题:JS创建自定义表格具体实现
本文地址:http://www.codeinn.net/misctech/226413.html