我有以下代码。
<td class='clsTblCell5' valign=top>
<select id='idMethodSel' class='clsTargetSel' style='width:220px; display:none ' Size=1 onchange='mtdAttachDlg("MtdAttach")'>
</select>
<table class='clsTblCellTI' style='border:1px solid #7f9db9;'>
<tr>
<td id='idMEthodSelTxt' style='width:210px; height:12px; padding-left:2px; padding-right:2px;border-style:none;'>
</td>
</tr>
</table>
</td>
我将显示保留select box
为 none 因为我想隐藏select box
并放置 atext box
而不是它,并且由于前面有一个非常复杂的代码而无法完全删除它
我有一个脚本,我在其中进行了更改
var a =idMethodSel.[options].innerHTML;
idMethodSelTxt.innerHTML=a;
我做了一些改变,但它不起作用。
请告诉我怎样才能使idMethodSelTxt
价值成为idMethodSel selcted
价值。