//**1.设置选中值:(根据索引确定选中值)**// var osel=document.getElementById("selID"); //得到select的ID var opts=osel.getElementsByTagName("option");//得到数组option var obt=document.getElementById("bt"); obt.onclick=function(){ opts[3].selected=tr…
var standard = $('input[name="standard"]:checked').val(); $("input[name='advertByid'][value="+ed_templateId+"]").attr('checked',true); $("select[name='platformName']").find("option[value='"+ed_platform+&qu…
DropDownList list = this.findContol("aas") as DropDownList;list.DataSource = new DataTable() ------------------------------- Control ctl = this.FindControl("NAME"); if (ctl != null) { if (ctl is Dro…