-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselectDialog.html
36 lines (32 loc) · 1.09 KB
/
selectDialog.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/ui-dialog.css" />
<style>
*{font-family: "微软雅黑";}
.input-group[class*=col-]{ padding: 10px;}
.input-group .input-group-addon{ background: #fff;}
.u-btn-close span { background: url(img/x.png) no-repeat; display: inline-block; width: 9px; height: 9px;}
</style>
</head>
<body>
<div class="input-group col-xs-12">
<div class="input-group-addon">集群名称</div>
<select placeholder="(不选为全部)" class="select2_src form-control" multiple="" name="SetID" id="set_select" style="display: none;">
<option value="2241">空闲机池</option>
<option value="2244">腾讯云</option>
</select>
</div>
<script src="js/jquery-1.10.2.min.js" ></script>
<script src="js/dialog-min.js" ></script>
<script src="js/selectDialog.js"></script>
<script>
$(function(){
$('#set_select').selectDialog({});
})
</script>
</body>
</html>