0

我正在使用 struts 1.3.8 和 hibernate 开发员工注册模块。我需要显示一个动态生成的表格以显示所有注册请求。

我的要求是...

在包含特定员工的所有详细信息的每一行中,有 2 个单选按钮用于批准拒绝。如果单击行(除单选按钮外的任何位置),整行的颜色应为粉红色。如果单击拒绝单选按钮,则整行的颜色应变为红色,单击批准单选按钮时,行颜色应为绿色。

4

1 回答 1

0

您可以像这样为每一行分配一个行ID

<tr id="row1"><td>YOUR CONTENT HERE</td></tr>

在单选按钮选择事件上,将以下函数调用为changeColor(this.id)

function changeColor(id)
{
//and now on the click of approve button, do this is javascript function:

    document.getElementById(id).setAttribute("style","background-color:green");

//and similarly, on reject:

    document.getElementById(id).setAttribute("style","background-color:red");
}

我希望你明白这个想法...

于 2013-02-16T07:37:58.850 回答