选择 Select Selected 项目 Returns 错误
Chosen Select Selected Item Returns False
我正在尝试从服务器端选择的 select 中获取 selected 项目。
这是我的 HTML:
<head>
<title></title>
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<link href="Content/chosen.css" rel="stylesheet" />
<form id="form1" runat="server">
<select id="chsn" runat="server" class="chzn-select" multiple="true" name="faculty" style="width: 200px;">
</select>
<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
<script src="Scripts/chosen.jquery.js"></script>
<script type="text/javascript">
$(function () {
$(".chzn-select").chosen();
$(".chosen-select").chosen();
});
</script>
</form>
这是服务器端:
protected void Button1_Click(object sender, EventArgs e)
{
List<ListItem> tmpLst = new List<ListItem>();
for (int i = 0; i < chsn.Items.Count; i++)
{
if (chsn.Items[i].Selected)
tmpLst.Add(chsn.Items[i]);
}
}
chsn.Items[i]。始终选择 returns 错误。有没有更好的方法来获得 selected 物品?
问题不在于您的 Button1_Click
活动。 (我已经测试过了)。
问题一定出在 Page_Load
事件上,您在该事件中将 select chsn
与值绑定在一起。确保在 !IsPostBack
下绑定 HTMLSelect
Naveen 是对的..我只是在回答这个问题,虽然你可能不明白 Naveens 的观点。
页面加载事件中的所有内容。
把它放在这张支票下
if(!isPostBack)
{
//here comes the code you have in pageload event.
}
我正在尝试从服务器端选择的 select 中获取 selected 项目。
这是我的 HTML:
<head>
<title></title>
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<link href="Content/chosen.css" rel="stylesheet" />
<form id="form1" runat="server">
<select id="chsn" runat="server" class="chzn-select" multiple="true" name="faculty" style="width: 200px;">
</select>
<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
<script src="Scripts/chosen.jquery.js"></script>
<script type="text/javascript">
$(function () {
$(".chzn-select").chosen();
$(".chosen-select").chosen();
});
</script>
</form>
这是服务器端:
protected void Button1_Click(object sender, EventArgs e)
{
List<ListItem> tmpLst = new List<ListItem>();
for (int i = 0; i < chsn.Items.Count; i++)
{
if (chsn.Items[i].Selected)
tmpLst.Add(chsn.Items[i]);
}
}
chsn.Items[i]。始终选择 returns 错误。有没有更好的方法来获得 selected 物品?
问题不在于您的 Button1_Click
活动。 (我已经测试过了)。
问题一定出在 Page_Load
事件上,您在该事件中将 select chsn
与值绑定在一起。确保在 !IsPostBack
Naveen 是对的..我只是在回答这个问题,虽然你可能不明白 Naveens 的观点。
页面加载事件中的所有内容。 把它放在这张支票下
if(!isPostBack)
{
//here comes the code you have in pageload event.
}