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