Как установить опцию select из значения ячейки таблицы
Это мой первый проект. У меня есть 2-таблицы, такие как table1, table2 содержит 2 столбца с данными. Теперь я хочу установить в моей таблице 2 Select ID="counts" значение параметра & text из значений ячеек таблицы 1... например, раз,два,три,четыре,пять,шесть-возможно ли это? Спасибо за помощь
мой код
<table id="table1" table-layout="fixed" border="1" width="100%" height="450px"> <tr> <td><span style="max-width:20%; color:white;">one</span></td> <td><span style="max-width:20%; color:white;">two</span></td> </tr> <tr> <td><span style="max-width:20%; color:white;">three</span></td> <td><span style="max-width:20%; color:white;">four</span></td> </tr> <tr> <td><span style="max-width:20%; color:white;">five</span></td> <td><span style="max-width:20%; color:white;">six</span></td> </tr> </table>
И моя таблица 2 имеет следующий код
<table id="table2" table-layout="fixed" border="1" width="100%" height="450px"> <tr> <td><span style="max-width:20%; color:white;">Ram</span></td> <td><span style="max-width:20%; color:white;">Govindha</span></td> </tr> <tr> <td><span style="max-width:20%; color:white;">Khandha</span></td> <td> <select id="counts"> <option value="text4">text4</option> <option value="text1">text1</option> <option value="text2">text2</option> <option value="text3">text3</option> </select></td> </tr> <tr> <td><span style="max-width:20%; color:white;">Ganesh</span></td> <td><span style="max-width:20%; color:white;">Ramesh</span></td> </tr> </table>
Что я уже пробовал:
Я пытаюсь установить значения параметра table2 Select ID="counts" из значений ячеек table1
Richard MacCutchan
В чем же проблема?
Paramu1973
Слава Ричарду, я лучше в своей профессии из-за этого Ричарда.
И я хочу иметь любой образец кодирования, чтобы установить этот параметр, спасибо Ричарду