select获取选中的值

1. 如何设置默认选中呢 

设置默认选中可在option 中添加 selected = "selected",具体举例如下:

  


 方法一:javascript

1:获取select对象: var  Sel=document.getElementById("citySel");
 
2:取到选中项的索引:var index=Sel.selectedIndex ;             // selectedIndex是所选中的项的index
 
3:获取选中项的value:  myselect.options[index].value;
 
4:取到选中项的文本内容:  myselect.options[index].text;
// selectedIndex是所选中的项的index
 
3:获取选中项的value:  myselect.options[index].value;
 
4:取到选中项的文本内容:  myselect.options[index].text;
 方法二:jquery

1:var options=$("#citySel option:selected");  //获取选中的option
 
2:options.val();   //拿到选中项的值,比如选中上海,获取的值为“sh”;
 
3:options.text();   //拿到选中项的文本,比如选中上海,获取的值为“上海”
//获取选中的option
 
2:options.val();   //拿到选中项的值,比如选中上海,获取的值为“sh”;
 
3:options.text();   //拿到选中项的文本,比如选中上海,获取的值为“上海”

更详细的讲解

https://blog.csdn.net/qq_36671474/article/details/60956202

 

你可能感兴趣的:(select,前端,js,jquery)