怎么不能多选
<asp:ListBox ID="tim" runat="server" Height="85px" Width="41px"
SelectionMode="Multiple" >
<asp:ListItem Text="1" Value="1" Selected="True"></asp:ListItem>
<asp:ListItem Text="2" Value="2" Selected="True"></asp:ListItem>
<asp:ListItem Text="3" Value="1"></asp:ListItem>
<asp:ListItem Text="4" Value="2"></asp:ListItem>
<asp:ListItem Text="5" Value="1"></asp:ListItem>
</asp:ListBox>
<select multiple="multiple" style="height: 85px; width: 41px">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
默认选了的那两个确实是选上了的,可是为什么点其它任意一个都会让其它已经选了的变为未选,多选不是这样用的吗?
------最佳解决方案--------------------要按住ctrl或者shift来选的。或者用鼠标框
------其他解决方案--------------------
鼠标框 是什么东东?
------其他解决方案--------------------就是用鼠标框住来选,可以选多个
------其他解决方案--------------------哦,我试过了,是这样,谢谢