0

内容这是用于验证组合框的java脚本代码..验证无法正常工作..我需要你的帮助..请帮助我..如果用户没有选择它必须显示所有树的警报框

<script type="text/javascript">
function checkseats() {
    if (!document.getElementsByName("seats")[0].selectedIndex == 1) {
        alert("Select No of Seats");
        return false;
    }
    return true;
}

function checkmovie() {
    if (document.getElementsByName("movie")[0].selectedIndex == 2) {
        alert("Please select Movie from the list");
        return false;
    }
    return true;
}

function checkdate() {
    if (document.getElementsByName("date")[0].selectedIndex == 3) {
        alert("Please select Date from the list");
        return false;
    }
    return true;
}

function validate() {
    checkdate();
    checkseats();
    checkmovie();
}
</script>
4

1 回答 1

0

我想你想要这个,

if (document.forms["yourFormName"].seats.value == "0"){
    alert("Select No of Seats");
    return false;  
    }
    return true;
}
于 2013-03-31T06:18:26.923 回答