1.select默认是inline元素,你可以

 

   
   
   
   
  1. select 
  2.     display:block

2.默认select会选择第一项option,如果初始状态不选可以:

jq写法:

   
   
   
   
  1. $("select").each(function(){this.selectedIndex=-1}); 

或者干脆加个冗余option:

 

   
   
   
   
  1. <select> 
  2.     <option>请选择网站...option> 
  3.     <option value="http://www.qq.com">腾讯网option> 
  4.     <option value="http://www.163.com">网易option> 
  5.     <option value="http://www.google.com">谷歌option> 
  6. select> 

注:

 

   
   
   
   
  1. The selectedIndex property returns -1 if a select object does not contain any selected items. Setting the selectedIndex property clears any existing selected items. 
  2.  
  3. The selectedIndex property is most useful when used with select objects that support selecting only one item at a time—that is, those in which the MULTIPLE attribute is not specified.  

3.获取选择项的值:

 

   
   
   
   
  1. <select id="ddlCities" onchange="alert(this.options[this.selectedIndex].value);"> 
  2.     <option value="0">北京option> 
  3.     <option value="1">济南option> 
  4.     <option value="2">威海option> 
  5. select> 

获取文本:

 

   
   
   
   
  1. this.options[this.selectedIndex].text 

更简洁的直接selectObj.value

 

4.多选

 

   
   
   
   
  1. <select id="ddlCities" multiple="multiple" size="2"> 
  2.     <option value="0">北京option> 
  3.     <option value="1">济南option> 
  4.     <option value="2">威海option> 
  5. select> 

 使用jq获取选择,仅测试所以写在标签上:

 

   
   
   
   
  1. <select id="ddlCities" multiple="multiple" size="2" onchange="alert($(this).find('option:selected').text());"> 
  2.     <option value="0">北京option> 
  3.     <option value="1">济南option> 
  4.     <option value="2">威海option> 
  5. select> 

如果纯js写,需要循环了:

 

   
   
   
   
  1. > 
  2. <html xmlns="http://www.w3.org/1999/xhtml"> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <title>无标题文档title> 
  6. <style type="text/css"> 
  7. select 
  8.     display:block; 
  9. style> 
  10. <script type="text/javascript"> 
  11. function ddlCities_onchange(theSel) 
  12.     var arr=[]; 
  13.     for(var i=0;i<theSel.options.length;i++) 
  14.     { 
  15.         if(theSel.options[i].selected) 
  16.             arr.push(theSel.options[i].innerText);   
  17.     } 
  18.     alert(arr.join()); 
  19. script> 
  20. head> 
  21.  
  22. <body> 
  23. <select> 
  24.     <option>请选择网站...option> 
  25.     <option value="http://www.qq.com">腾讯网option> 
  26.     <option value="http://www.163.com">网易option> 
  27.     <option value="http://www.google.com">谷歌option> 
  28. select> 
  29.  
  30. <select id="ddlCities" multiple="multiple" size="2" onchange="ddlCities_onchange(this);"> 
  31.     <option value="0">北京option> 
  32.     <option value="1">济南option> 
  33.     <option value="2">威海option> 
  34. select> 
  35. body> 
  36. html> 

5.添加移除option:

jq添加:

   
   
   
   
  1. $("<option value='3'>南京option>").appendTo($("#ddlCities")); 

js写法:

 

   
   
   
   
  1. var anOption = document.createElement("option"); 
  2. anOption.text="南京"
  3. anOption.value="4"
  4. document.getElementById("ddlCities").options.add(anOption); 

或者 document.getElementById("ddlCities").add(anOption);