select2 api引數的文件
.on("change", function(e) { log("change "+JSON.stringify({val:e.val, added:e.added, removed:e.removed})); }) // 改變事件
.on("select2-opening", function() { log("opening"); }) // select2 開啟中事件
.on("select2-open", function() { log("open"); }) // select2 開啟事件
.on("select2-close", function() { log("close"); }) // select2 關閉事件
.on("select2-highlight", function(e) { log ("highlighted val="+ e.val+" choice="+ JSON.stringify(e.choice));}) // 高亮
.on("select2-selecting", function(e) { log ("selecting val="+ e.val+" choice="+ JSON.stringify(e.choice));}) // 選中事件
.on("select2-removing", function(e) { log ("removing val="+ e.val+" choice="+ JSON.stringify(e.choice));}) // 移除中事件
.on("select2-removed", function(e) { log ("removed val="+ e.val+" choice="+ JSON.stringify(e.choice));}) // 移除完畢事件
.on("select2-loaded", function(e) { log ("loaded (data property omitted for brevity)");}) // 載入中事件
.on("select2-focus", function(e) { log ("focus");}) // 獲得焦點事件
.on("select2-blur", function(e) { log ("blur");}); // 失去焦點事件