如何在不使用javascript按CTRL键的情况下从列表框中选择多个项目?
<asp:ListBox ID="Satellites" runat="server" AppendDataBoundItem="true" AutoPostBack="true" onchange='GetValueSatellite();' Width="400px" SelectionMode="Multiple"></asp:ListBox>
答案 0 :(得分:2)
$('option').mousedown(function (e) {
e.preventDefault();
$(this).prop('selected', $(this).prop('selected') ? false : true);
return false;
});