只有一个条件被执行,其他的不是。请提供解决方案。
function a() {
var x=document.forms["addform"]["gender"].value;
if (x==null || x==""){
alert("Enter gender");
return false;
}
var y=document.forms["addform"]["count"].value;
if (y==null || y==""){
alert("enter country");
return false;
}
}