JS part:
Copy code code as follows:
Function next () {
// get the table object
var Otable = document.GetelementByid ("table1");
// Insert TR
var otr = Otable.insertrow ();
// One line Tr inserts 3 TDs
var otd1 = otr.insertcell ();
var otd2 = otr.insertcell ();
var otd3 = otr.insertcell ();
// Specify TD content
Otd1.innerHtml = "@Process_time display the time required for processing a page";
Otd2.innerhtml = "No need to set parameters";
OTD3.InnerHtml = "No need to set the parameter value";
}
Jsp:
Copy code code as follows:
<Table ID = "Table1">
<thead>
<tr>
<TH>
Parameter description
</th>
<TH>
Including this parameter
</th>
<TH>
Parameter
</th>
</tr>
</thead>
</table>