我有一个下拉菜单,其值为No,是
选择下拉菜单后,单击命令按钮,然后应根据下拉菜单中的选定值将其重定向到asp页面。
如果选择是,则在单击命令按钮后重定向到abc.asp 如果未选择,则重定向到def.asp
但是它不会重定向到任何页面
<input type="submit" value ="continue" name="cmd" onclick="chkSite()">
function chkSite() {
var lacCon = document.getElementById("dropdown").value;
if (lacCon =="Yes")
{
window.location.href = 'abc.asp'
}
else if (lacCon=="No")
{
window.location.href = 'def.asp'
}
return true
}