//调用日历控件 var oCalendarChs=new PopupCalendarYD("oCalendarChs"); oCalendarChs.weekDaySting=new Array("日","一","二","三","四","五","六"); oCalendarChs.monthSting=new Array("一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"); oCalendarChs.oBtnTodayTitle="今天"; oCalendarChs.oBtnCancelTitle="取消"; oCalendarChs.currDate = new Date(); oCalendarChs.today = new Date(); oCalendarChs.Init(); function formHotelSearch_OnSubmit(){ if(document.getElementById("CityId").value == ""){ alert('城市必须选择'); return false; } if(document.getElementById("StartDate").value == ""){ alert('入住时间必须选择'); document.getElementById("StartDate").click(); return false; } if(document.getElementById("EndDate").value == ""){ alert('离开时间必须选择'); document.getElementById("EndDate").click(); return false; } if(stringToDate(document.getElementById("StartDate").value, true) >= stringToDate(document.getElementById("EndDate").value, true)){ alert('离开日期必须比入住日期晚。\n请重新选择!'); document.getElementById("EndDate").click(); return false; } } document.writeln(""); document.writeln(""); document.writeln(" "); document.writeln(" "); document.writeln(" "); document.writeln(" "); document.writeln(" "); document.writeln(" "); document.writeln("
选择城市:<\/td>"); document.writeln("
酒店星级:<\/td>"); document.writeln("
价格范围:<\/td>"); document.writeln("
入住时间:<\/td>"); document.writeln(" <\/td>"); document.writeln(" <\/tr>"); document.writeln("
离店时间:<\/td>"); document.writeln(" <\/td>"); document.writeln(" <\/tr>"); document.writeln("
<\/td>"); document.writeln(" <\/tr>"); document.writeln("<\/form>"); document.writeln(" <\/table>");