Form表单之下拉框

下拉框:


1.获取下拉选中项的值、文本、索引


$("select[name='select2'] option:selected").val();//选中项的值
$("select[name='select2'] option:selected").text();//选中项的文本
$("select[name='select2'] option:selected").index();//选中项的索引(从0开始)

2.选中某值、某文本、某索引的下拉项:


$("select[name='select3']").val("option2");//选中值为option2的项
$("select[name='select3'] option[text='下拉2']").prop("selected","selected");//选中文本值为 下拉2 的项;根据文本选中项无效,请知道的朋友不吝赐教;
$("select[name='select3'] option").eq(2).prop("selected","selected");//选中索引值为2的项,为第三项;


你可能感兴趣的:(javaScript)