selectForK13.html
1014 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>select</title>
<link rel="stylesheet" href="style/reset_wev8.css">
<link rel="stylesheet" href="style/selectForK13_wev8.css">
<script type="text/javascript" src="script/jquery-1.8.3.min_wev8.js"></script>
<script type="text/javascript" src="script/selectForK13.min_wev8.js"></script>
<script>
$(function () {
$("#s1").selectForK13();
$("#s2").selectForK13({"width":"200px"});
$("#s3").selectForK13({
"width":"300px",
"id": "aa",
"class": "cc"
});
})
</script>
</head>
<body>
<select id="s1">
<option selected="selected">绗竴涓?/option>
<option>绗簩涓?/option>
<option>绗笁涓?/option>
</select>
<select id="s2">
<option selected="selected">绗竴涓?/option>
<option>绗簩涓?/option>
<option>绗笁涓?/option>
</select>
<select id="s3">
<option selected="selected">绗竴涓?/option>
<option>绗簩涓?/option>
<option>绗笁涓?/option>
</select>
</body>
</html>