select2动态加载

雨中笑 前端 776热度

简介jquery动态添加select2组件

// 添加代金券组配置
var count = <{$count}>;
function addCoupon()
{
var html = '';
html += '<div class="control-group">';
html += '<label class="control-label">匹配代金券面值<span class="bt">*</span>:</label>';
html += '<div class="controls">';
html += '<select type="text" placeholder="匹配代金券面值" style="width: 220px;" class="select200" multiple="multiple" class="form-control" autocomplete="off" name="pid2[]" id="pid2">';
<{foreach from=$couponList key=key item=val}>
html += '<option label="<{$val}>" value="<{$key}>"><{$val}></option>';
<{/foreach}>

html += '</select></div></div>';
html += '</div>';
$("#addCoupon").append(html).find('select').select2({
selectOnClose: true
});
count++;
}


.find('select').select2({
selectOnClose: true
});


很赞哦!(4)

本文阅读量 2883发布于 2020年6月16日

您的访问IP 18.188.108.54最早于 2024年4月29日 15时04分41秒 阅读过本文 为本文提供了 1 热度 1 阅读量

文章评论
回帖