实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<link href="//cdn.bootcss.com/select2/3.5.4/select2.min.css" rel="stylesheet"/>
2
<script src="//cdn.bootcss.com/jquery/1.7.1/jquery.min.js">
3
</script>
4
<script src="//cdn.bootcss.com/select2/3.5.4/select2.min.js">
5
</script>
6
<input type="hidden" id="e24" style="width:300px;"/>
7
<script>
8
    $(document).ready(function () {
9
        $('#e24').select2({
10
            query: function (query){
11
                var data = {
12
                    results: [
13
                        { id: 1, text: "I'm selectable" },
14
                        { id: 2, text: "I'm a disabled option", disabled: true },
15
                        { id: 3, text: "I'm selectable too!" }
16
                    ]
17
                };
18
19
                query.callback(data);
20
            }
21
        });
22
    });
23
</script>