如何在不使用JavaScript按CTRL键的情况下从ListBox ASP.NET中选择多个项目



如何在不使用JavaScript按CTRL键的情况下从列表框中选择多个项目?

 <asp:ListBox ID="Satellites"  runat="server" AppendDataBoundItem="true" AutoPostBack="true"  onchange='GetValueSatellite();' Width="400px" SelectionMode="Multiple"></asp:ListBox>
$('option').mousedown(function (e) {
  e.preventDefault();
  $(this).prop('selected', $(this).prop('selected') ? false : true);
  return false;
 });

最新更新