当前位置: 代码迷 >> ASP.NET >> 怎么用javascript獲得DropDownList選中的值阿?(解決給分)
  详细解决方案

怎么用javascript獲得DropDownList選中的值阿?(解決給分)

热度:8183   发布时间:2013-02-25 00:00:00.0
如何用javascript獲得DropDownList選中的值阿?急(解決給分)
如何用javascript獲得DropDownList選中的值?

我的代碼是這樣的:
  function Do()
  {
  if(document.getElementById('dplType').selectedIndex==0);
  {
  alert('Yes!');
  }
  else 
  {
  alert('No!');
  }
  } 頁面加載后說:缺少對象 請教哥哥們怎么解決?



------解决方案--------------------------------------------------------
JScript code
   function Do()         {         if(document.getElementById('dplType').selectedIndex==0)//多了";"         {             alert('Yes!');         }         else         {             alert('No!');         }     }
  相关解决方案