当前位置: 代码迷 >> vbScript >> vbscript客户端取SELECT控件的值解决办法
  详细解决方案

vbscript客户端取SELECT控件的值解决办法

热度:6083   发布时间:2013-02-26 00:00:00.0
vbscript客户端取SELECT控件的值


用以下方式,取得size = 8 的select控件的值出错,但是我看不出错在了那里
selCounterID为select控件的名称

intIndex = -2
intIndex=document.form1.selCounterID.selectedIndex
strCounterID = document.form1.selCounterID.options(intIndex).value
strCheck = strCheck & strCounterID

------解决方案--------------------------------------------------------
应该是可以的。换个变量名看看strCounterID1 = 
HTML code
<form name="form1"><select name="selCounterID">    <option value="1">1</option>    <option value="2" selected>2</option>    <option value="3">3</option></select></form><script language="VBScript">intIndex=document.form1.selCounterID.selectedIndex strCounterID1 = document.form1.selCounterID.options(intIndex).value strCheck = strCheck & strCounterID1msgbox strCheck</script>
  相关解决方案