一个select option 取值问题!
<form name="form1">
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="22%">语种:
<select name="d1" id="d1">
<option value="50" selected>英语</option>
<option value="60">汉语</option>
<option value="70">其它语种</option>
</select></td>
<td width="20%">报价:
<input name="d4" type="text" id="d4" size="8"></td>
<td width="27%">成本:
<input name="d5" type="text" id="d1_1" size="8"></td>
</tr>
</table>
</form>
如上面代码所示,所要实现的功能为,当选中英语时,成本输入框中的值就相应的变成英语所对应的50,所汉语就是60!<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="22%">语种:
<select name="d1" id="d1">
<option value="50" selected>英语</option>
<option value="60">汉语</option>
<option value="70">其它语种</option>
</select></td>
<td width="20%">报价:
<input name="d4" type="text" id="d4" size="8"></td>
<td width="27%">成本:
<input name="d5" type="text" id="d1_1" size="8"></td>
</tr>
</table>
</form>
大家帮帮忙啊,急用啊!