猿问

如何使用jquery设置aspnet下拉列表的选定值

我有一个带有asp下拉列表的ac#Web用户控件。我想使用jquery或类似工具根据网站的网址设置所选值。


<asp:DropDownList ID="LangSelect" runat="server" AutoPostBack="True" OnSelectedIndexChanged="LangSelect_SelectedIndexChanged" >

    <asp:ListItem Text="English" Value="English"> English</asp:ListItem>

    <asp:ListItem Text="Français" Value="Français"></asp:ListItem>

    <asp:ListItem Text="Español" Value="Español"></asp:ListItem>

    <asp:ListItem Text="Deutsch" Value="Deutsch"></asp:ListItem>

</asp:DropDownList>

我已经试过了:


<script>

    if (window.location.href.indexOf('de') > 0) {

        $("#LangSelect").val('Deutsch');

    }

</script>

但是,它给出了一个错误:


未捕获的TypeError:无法读取null的属性“ val”


繁星coding
浏览 132回答 3
3回答

HUH函数

$ {document).ready(function(){如果(window.location.href.indexOf('de')> 0){$('<%= LangSelect.ClientID%>')。find('option [value = 'Deutsch']').prop('selected', true);}});
随时随地看视频慕课网APP
我要回答