0
 Set oNewRow = ProgramTable.insertRow(-1)
 oNewRow.onClick = GetRef("HighLight")

ProgramTable 是一个表 ID,此函数将动态添加一行。

在第二行中,“HighLight”函数在点击时分配给新添加的行。(这一步不执行HighLight功能)

我想在 Javascript 中执行类似的任务。

谢谢你。

4

1 回答 1

0
// oNewRow is the refrence to the newly added row
var oNewRow = ProgramTable.insertRow();

// assign the onclick function to the newly added row
oNewRow.onclick = function(){ GetRef("Highlight") };

我在考虑你知道插入行和 GetRef 函数内部的逻辑。上面的代码只解释了如何在一行中添加一个 onclick 函数。

于 2013-01-17T06:51:48.450 回答