The jQuery replacement for select boxes
当前为
// ==UserScript==
// @name Select2
// @namespace https://select2.github.io/
// @version 0.1
// @description The jQuery replacement for select boxes
// @author t_liang
// @include *:*
// @grant none
// @noframes false
// @require http://cdn.bootcss.com/jquery/3.1.1/jquery.min.js
// ==/UserScript==
//(function() {
jQuery(function($) {
$.getScript('//cdn.bootcss.com/select2/4.0.3/js/select2.min.js', function() {
$('select', document.body).select2();
});
$(document.head).append('<link href="//cdn.bootcss.com/select2/4.0.3/css/select2.min.css" rel="stylesheet">');
});
//})();