-
Notifications
You must be signed in to change notification settings - Fork 13
/
10-jquery-wizard.html
164 lines (164 loc) · 6.72 KB
/
10-jquery-wizard.html
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ukázka formuláře v podobě průvodce</title>
<script src="../09-dom-jquery/external/jquery-2.1.4.js"></script>
<script>
//<![CDATA[
$(document).ready(function(){
//připojení událostí
$('#vyberProduktu button').click(function(){
if ($('#typZaluzie').prop('checked')){
$('#vyberProduktu').hide();
$('#detailZaluzie').show();
}else if ($('#typRoleta').prop('checked')){
$('#vyberProduktu').hide();
$('#detailRoleta').show();
}else{
alert('Musíte vybrat typ produktu!');
return false;
}
});
$('#detailZaluzie button').click(function(){
if ($('#detailZaluzieMaterial').val()==''){
alert('Musíte vybrat materiál!');
$('#detailZaluzieMaterial').focus();
return false;
}
if ($('#detailZaluzieTyp').val()==''){
alert('Musíte vybrat typ!');
$('#detailZaluzieTyp').focus();
return false;
}else if ($('#detailZaluzieTyp').val()=='horizontalni' && $('#detailZaluzieMaterial').val()=='látka'){
alert('Nelze vyrobit horizontální látkové žaluzie!');
$('#detailZaluzieMaterial').focus();
return false;
}
if ($('#detailZaluzieBarva').val()==''){
alert('Musíte vybrat barvu!');
$('#detailZaluzieBarva').focus();
return false;
}
$('#detailZaluzie').hide();
$('#rozmery').show();
});
$('#detailRoleta button').click(function(){
if ($('#detailRoletaTyp').val()==''){
alert('Musíte vybrat typ!');
$('#detailRoletaTyp').focus();
return false;
}
if ($('#detailRoletaBarva').val()==''){
alert('Musíte vybrat barvu!');
$('#detailRoletaBarva').focus();
return false;
}
$('#detailRoleta').hide();
$('#rozmery').show();
});
$('#rozmery button').click(function(){
var oknoSirkaVal=$('#oknoSirka').val();
if (oknoSirkaVal<300 || oknoSirkaVal>10000){
alert('Šířka okna může být jen v interval 300-10000 mm!');
return false;
}
var oknoVyskaVal=$('#oknoVyska').val();
if (oknoVyskaVal<300 || oknoVyskaVal>10000){
alert('Výška okna může být jen v interval 300-10000 mm!');
return false;
}
alert('odeslání...');
});
//výchozí skrytí prvků
$('form > div').hide();
$('#vyberProduktu').show();
});
//]]>
</script>
</head>
<body>
<h1>Ukázka objednávkového formuláře v podobě wizardu</h1>
<form>
<div id="vyberProduktu">
<h2>Vyberte zboží, o které máte zájem</h2>
<label for="typZaluzie"><input type="radio" name="typ" id="typZaluzie"> Žaluzie</label><br />
<label for="typRoleta"><input type="radio" name="typ" id="typRoleta"> Roleta</label>
<button type="button">Pokračovat</button>
</div>
<div id="detailZaluzie">
<h2>Parametry žaluzií</h2>
<table>
<tr>
<td><label for="detailZaluzieMaterial">Materiál</label></td>
<td>
<select name="zaluzieMaterial" id="detailZaluzieMaterial">
<option value="">---</option>
<option value="látka">látka</option>
<option value="hliník">hliník</option>
<option value="plast">plast</option>
</select>
</td>
</tr>
<tr>
<td><label for="detailZaluzieTyp">Typ</label></td>
<td>
<select name="zaluzieTyp" id="detailZaluzieTyp">
<option value="">---</option>
<option value="horizontalni">horizontální</option>
<option value="vertikalni">vertikální</option>
</select>
</td>
</tr>
<tr>
<td><label for="detailZaluzieBarva">Barva</label></td>
<td>
<input type="color" name="zaluzieBarva" id="detailZaluzieBarva" />
</td>
</tr>
</table>
<button type="button">Pokračovat</button>
</div>
<div id="detailRoleta">
<h2>Parametry rolety</h2>
<table>
<tr>
<td><label for="detailRoletaTyp">Roleta</label></td>
<td>
<select name="roletaTyp" id="detailRoletaTyp">
<option value="">---</option>
<option value="normalni">normální</option>
<option value="zatemnovaci">zatemňovací</option>
</select>
</td>
</tr>
<tr>
<td><label for="detailRoletaBarva">Barva</label></td>
<td>
<input type="color" name="roletaBarva" id="detailRoletaBarva" />
</td>
</tr>
</table>
<button type="button">Pokračovat</button>
</div>
<div id="rozmery">
<h2>Parametry rolety</h2>
<table>
<tr>
<td><label for="oknoSirka">Šířka okna (mm)</label></td>
<td>
<input type="number" name="oknoSirka" id="oknoSirka" min="300" max="10000"/>
</td>
</tr>
<tr>
<td><label for="oknoVyska">Výška okna (mm)</label></td>
<td>
<input type="number" name="oknoVyska" id="oknoVyska" min="300" max="10000"/>
</td>
</tr>
</table>
<button type="button">Pokračovat</button>
</div>
</form>
</body>
</html>