啥意思?
这样吗?
<select id="SELECT">
<option value="abc">123</option>
<option value="def">456</option>
<option value="ghi">789</option>
</select>
<table>
<tr>
<td style="width:100px;height:100px;border:1px solid #369;" id="TD">&nbsp;</td>
</tr>
<tr>
<td>[ <a href="javascript:click(0);">0</a> | <a href="javascript:click(1);">1</a> | <a href="javascript:click(2);">2</a> ]</td>
</tr>
</table>
<script>
function click(index){
document.getElementById("TD").innerHTML=document.getElementById("SELECT").options[index].text;
}
</script>