0
內容這是Java腳本code.for驗證組合框..驗證不正常工作..我需要你的幫助..plz幫助我..如果用戶不選擇它必須顯示警報箱體爲所有的樹組合框驗證
<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>
發表您的HTML代碼還 – 2013-03-31 06:12:19