VBScript动态添加和删除行
VBScript to add and delete row dynamcially
我想向我的 HTML table 添加一个新行并使用 VBScript 动态删除该行。我是新手,谁能指导我如何操作。
请注意,这将特定于 Internet Explorer。可能不适用于其他浏览器/
Sub AddRow()
Dim objTable : Set objTable = window.document.getElementById("tableid")
Dim objRow : Set objRow = objTable.insertRow()
Dim intCount, objCell
For intCount = 0 To 2
Set objCell = objRow.insertCell()
objCell.innerHTML = "Content for cell")
Next
End Sub
删除使用
window.document.getElementById("tableid").deleteRow(oRow.rowIndex);
我想向我的 HTML table 添加一个新行并使用 VBScript 动态删除该行。我是新手,谁能指导我如何操作。
请注意,这将特定于 Internet Explorer。可能不适用于其他浏览器/
Sub AddRow()
Dim objTable : Set objTable = window.document.getElementById("tableid")
Dim objRow : Set objRow = objTable.insertRow()
Dim intCount, objCell
For intCount = 0 To 2
Set objCell = objRow.insertCell()
objCell.innerHTML = "Content for cell")
Next
End Sub
删除使用
window.document.getElementById("tableid").deleteRow(oRow.rowIndex);