lodgment_search.js
1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!--
var term = 5; // 選択表示する月数(リザーブゲートの公開月数に設定すると良いかと思います。)
var today = new Date();
var cYear = today.getFullYear();
var cMonth = today.getMonth();
var cDate = today.getDate();
var i;
var std;
var optC;
var optN;
for (i=0; i<term; i++) {
cMonth++;
if (cMonth > 12) {
cMonth = 1;
cYear++;
}
fcMonth = cMonth;
if (cMonth < 10) { fcMonth = "0" + cMonth; }
vcMonth = cMonth * 1;
if (i == 0) { std = "selectedi=\"selected\""; }
else { std = ""; }
optC = optC + "<option value='"+cYear+fcMonth+"' "+std+">"+cYear+"年"+vcMonth+"月</option>\n";
}
for(i=1; i<=31; i++){
if(i == cDate) { std = "selected=\"selected\""; }else{ std = ""; }
optN = optN + "<option value='"+i+"' "+std+">"+i+"日</option>\n";
}
//クイック検索用
function doChange(f,no){
if(f.smem_id.options[f.smem_id.options.selectedIndex].value=="" ){
alert("ホテルを選択してください");
return false;
}else{
f.mem_kubun.value = no;
document.form1.submit();
return false;
}
}
//グループホームページリンク用
function gotoUrl(f){
if(f.hp.options[form2.hp.options.selectedIndex].value=="" ){
alert("ホテルを選択してください");
return false;
}else{
window.location.href=f.hp.options[f.hp.options.selectedIndex].value;
return false;
}
}
// -->