You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
750 B
JavaScript
28 lines
750 B
JavaScript
//Çл»²ãЧ¹û
|
|
TrunMenu("hotelType","active","li","cantondetailinfo");
|
|
$("#hotelstarttime").datepicker({
|
|
showAnim:"fadeIn",
|
|
duration:0,
|
|
minDate: 0,
|
|
maxDate:"2y",
|
|
numberOfMonths: 3,
|
|
showButtonPanel: true
|
|
})
|
|
$("#hotelendtime").datepicker({
|
|
showAnim:"fadeIn",
|
|
duration:0,
|
|
minDate: 0,
|
|
maxDate:"2y",
|
|
numberOfMonths: 3,
|
|
showButtonPanel: true
|
|
});
|
|
|
|
|
|
|
|
|
|
s1 = "5/3/2013";;
|
|
s2 = "5/4/2013";
|
|
var exdate=new Date();
|
|
exdate.setDate(exdate.getDate()+1);
|
|
document.cookie="searchhotel=starttime=" +escape(s1)+"&endtime=" +escape(s2)+";expires="+exdate.toGMTString()+";path=/";
|