首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

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

2011-12-14 
如何用javascript獲得DropDownList選中的值阿?急(解決給分)如何用javascript獲得DropDownList選中的值?我

如何用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!');         }     } 

热点排行