select2.js 设置如下:allowClear : true,效果如图:需要点击右边 关闭按钮,来触发校验, 找不到 右边 关闭按钮触发事件试过$('.select2-search-choice-close').click(function () {});select2:unselect,select2:unselecting都没有效果
1 回答
DIEA
TA贡献1820条经验 获得超2个赞
点击allowClear 关闭按钮时,选值为空,通过值来判断即可
$(".common-select2").select2().on("change",function() {
var me = $(this);
//点击allowClear 关闭按钮时,选值为空,通过值来判断即可
if(me.val()==""){
}
})
添加回答
举报
0/150
提交
取消