相关JS:

    <script type="text/javascript" language="javascript">
    
function SearchChange()
    {
        
var ddl = document.getElementById("DropDownList1")   
        
var index = ddl.selectedIndex;   
            
        
var Value = ddl.options[index].value;   
        
var Text = ddl.options[index].text;
        
        alert(Value);
    }
    
</script>

 

调用:

<asp:DropDownList ID="DropDownList1" runat="server" onchange="SearchChange();">
    
<asp:ListItem Value="0">111</asp:ListItem>
    
<asp:ListItem Value="1">222</asp:ListItem>
    
<asp:ListItem Value="2">333</asp:ListItem>
</asp:DropDownList
posted on 2011-12-07 11:08  易尔购  阅读(9373)  评论(0编辑  收藏  举报