📜  在 select2 下拉列表中添加图像 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:12.187000             🧑  作者: Mango

代码示例1
$(".class").select2({
    templateResult: formatState,
    templateSelection: formatState
});

function formatState (opt) {
    if (!opt.id) {
        return opt.text.toUpperCase();
    } 

    var optimage = $(opt.element).attr('data-image'); 
    console.log(optimage)
    if(!optimage){
       return opt.text.toUpperCase();
    } else {                    
        var $opt = $(
           ' ' + opt.text.toUpperCase() + ''
        );
        return $opt;
    }
};