现在的位置: 首页 > 综合 > 正文

20100505 学习笔记:DropDownList

2012年07月29日 ⁄ 综合 ⁄ 共 446字 ⁄ 字号 评论关闭

 

    //get the selected data by JS

        var select  = document.getElementById('SCountry');

        
        alert(select.options[select.selectedIndex].innerText);  //selected text
        alert(select.options[select.selectedIndex].value);        //selected value

 

   //clear the binding data

   DropDownList.Items.Clear();

   DropDownList.Items.Remove(item);

 

   //add item

   DropDownList.Items.Add("AP");

 

   //insert

   DropDownList.Items.Insert(0, new ListItem("", "0"));

 

【上篇】
【下篇】

抱歉!评论已关闭.