怎么样才能获取,页面多个listbox ,其中以个LISTBOX的值?

页面有多个LISTBOX,我点击编辑按纽的时候,获取当前选中的LISTBOX的值... 页面有多个LISTBOX,我点击编辑按纽的时候,获取当前选中的LISTBOX的值 展开
 我来答
jinwb
2009-08-14 · TA获得超过148个赞
知道小有建树答主
回答量:462
采纳率:0%
帮助的人:249万
展开全部
这种问题不用问,当然是根据ID来找了

前台就用JS 语法为 var obs = document.getElementById('listbox控件ID’);

后台就用FindControl('控件ID')

具体的用法你再查查相关就行
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
azur2000
2009-07-31 · TA获得超过321个赞
知道小有建树答主
回答量:315
采纳率:0%
帮助的人:218万
展开全部
<div>
<asp:ListBox ID="lb1" runat="server">
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
</asp:ListBox>
<asp:ListBox ID="lb2" runat="server">
<asp:ListItem>4</asp:ListItem>
<asp:ListItem>5</asp:ListItem>
<asp:ListItem>6</asp:ListItem>
</asp:ListBox>

<input type=button onclick="check()" />
</div>
<script language="javascript" >
function check()
{
var obs = document.getElementsByTagName('select');
for(var i = 0; i<obs.length;i++)
{
//alert(obs[i].selectedIndex);
if(obs[i].selectedIndex != -1)
{
alert(obs[i].options[obs[i].selectedIndex].innerText);
}
}
}
</script>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式