var selectObj = document.getElementById("QyType");
var activeIndex = selectObj.options[selectObj.selectedIndex].value;
if (activeIndex == ""){
alert ("请选择您的企业类别!");
selectObj.focus();
return false;
}
试试这个吧!
为什么不通过被选中select中option的index来进行判断呢?