0

ドロップダウンのステータスに応じてテーブルの行の色を変更したい。ajaxを使用してこれを行う方法は?

echo '<table id="table_id">';
echo '<tr>';
echo '<td><b>'.$client.'</b></td>';
echo '<td>
<select class="color_status" onchange="update_Status(this.value)">
    <option value="Red">Red</option>
    <option value="Green">Green</option>
    <option value="Yellow">Yellow</option>
</select>
</td>';
echo '</tr>';
echo '</table>';

ドロップダウンで赤を選択すると、現在の行のセルの色が変わります。
私はスクリプトで次のようなことをしました:

function update_Status(str){
     if(str=='Red'){
       //the current row cells will turn to red
     }
     if(str=='Green'){
       //the current row cells will turn to green
     }
     if(str=='Yellow'){
       //the current row cells will turn to yellow
     }
}
4

1 に答える 1