首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > vbScript >

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

2012-02-29 
vbscript客户端取SELECT控件的值用以下方式,取得size 8 的select控件的值出错,但是我看不出错在了那里se

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> 

热点排行