bootstrap select2 选中和取消选中事件

南宫才英
2023-12-01

1.选中
$(“.teammamberjobtype”).select2();
$(“#teammamberjobtype”).on(“select2:select”,function (){
console.log(2222222);

        });
        ![在这里插入图片描述](https://img-blog.csdnimg.cn/498017e3aa7143939adc19ba5cd62673.png)

2.取消选中
$(“.teammamberjobtype”).select2();
$(“#teammamberjobtype”).on(“select2:unselect”,function (){
console.log(111111);

        });
        ![在这里插入图片描述](https://img-blog.csdnimg.cn/ba18406f860f43cd832b01b2403511ab.png)
 类似资料: