Set oNewRow = ProgramTable.insertRow(-1)
oNewRow.onClick = GetRef("HighLight")
ProgramTable是一个表ID,此函数将动态添加一行。
在第二行," HighLight"函数get分配给新添加的行onclick。 (在此步骤中不执行HighLight功能)
我想在Javascript中执行类似的任务。
谢谢。
答案 0 :(得分: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函数添加到行中。