|
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用 · 内置多项VBA编程加强工具 ★ 免费下载 ★ ★ 使用手册★
各位大神,我想做一个批量填写的VBA,但不知道怎样选择下拉框中的选项,网页代码如下,请不吝指教!
<form name="c_meterTypeForm" action="" method="post">
<input type="hidden" name="read_id" value="" />
<input type="hidden" name="meter_id" value="8200000028034653" />
<input type="hidden" name="read_type_code_1" value="" />
<tr>
<td class="td_fld_head_left" nowrap align="left" colspan="2">
示数类型
<input type="button" name="btn_add" value="新增" class="btn_2k3"
onclick="addMeterType();">
<input id="C_meterMap_save" type="button" class="btn_2k3"
onClick="saveC_meterType()" value="保存" />
<input id="C_meterMap_del" type="button" class="btn_2k3"
onClick="delC_meterType('','8200000028034653')" disabled value="删除" />
</td>
</tr>
<tr class="tr_fld_v">
<td nowrap width="100%" align="right" class="td_fld_title">
<font color="#ff0000">*</font>示数类型
</td>
<td class="td_fld" >
<span id="read_type_code_frame" align='right' style='display:table;position:relative;
width:123px; '><input type=text id="read_type_code_list_txt" originvalue="" value="" style='width:99%;' readOnly elementType="droptree"><img id="read_type_code_list_downdot" style="position:absolute;right:0px;cursor:hand;height:20px;top:1px" src="/sgpmss/syscom/images/down.gif" elementType="droptree"></img>
</span>
<select id="read_type_code" name="read_type_code" attr="" style="display:none;" ><option selected value=''></option></select>
<script type="text/javascript"><!--
read_type_code_list = new DropList('read_type_code_list');
read_type_code_list.optionValue[0]=""
read_type_code_list.optionText[0]=" "
read_type_code_list.optionValue[1]="118"
read_type_code_list.optionText[1]="30分钟需量"
read_type_code_list.optionValue[2]="236"
read_type_code_list.optionText[2]="反无功反向"
read_type_code_list.optionValue[3]="233"
read_type_code_list.optionText[3]="反无功峰"
read_type_code_list.value=""
read_type_code_list.width="123px"
read_type_code_list.divwidth="123px"
read_type_code_list.divheight="200"
read_type_code_list.display();
document.attachEvent("onclick",function(){otherClickUpDot('read_type_code_list')});
//--></script>
</td>
</tr>
</form>
|
|