0
你好,我正在使用select2插件下拉列表。我試圖在打開的事件上將寬度設置爲不同的值,但沒有成功。有沒有辦法以更方便的方式來實現這一點?動態改變寬度Select2
$('#select').select2({
width: o.width,
data: objs // some data
});
$('$select').on('select2:open', function (e) {
$(this).select2({width: 400}); // this does not work...
// select2 is opened, handle event
});