js和jquery操纵select

1 jquery操作select<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

 

 

$(“.selectEd”).find(“option:selected’).text();获取选中的select的值


$(“#selectId option[‘index=0’]”).remove();删除索引为0的option


$(“#selectId option[‘value=3’]”).remove();删除value为3的值


$(“#selectId”).change(function (){......});


$(“#selectId”).append(“<optionvalue=”value”>text</option>”);为select追加一个option(下拉项)


var index = $(“#selectId”).find(“option:selected”).index();//获取选中共的option的index
 


 

2js操作select


 

     

var obj=document.getElementById(“selectId”);//获取ID


obj.options.length=0;//清除所有的内容


obj.options[index] =new Option(“three”,3);//更改对应值


obj.options[index].selected=true;//保持选中状态


obj.add(new Option(“4”,4));”文本”,”值”


var index =obj.selectedIndex;


obj.options.remove(index);//删除选中项
 

 

你可能感兴趣的:(JavaScript)