如何在select2 newremove标签事件上触发新的ajax?

如何在select2 newremove标签事件上触发新的ajax?,第1张

如何在select2 new / remove标签事件触发新的ajax?

未经测试,但应该可以工作:

$('.e6').on("change", function(e){    if (e.removed) {        $.ajax({ type: "POST", url: '/admin/?controller=vouchers&action=updateRelatedProducts', data: {id: e.removed.id, action: remove},    //Or you can e.removed.text error: function () {     alert("error"); }        });    }    if (e.added) {        $.ajax({ type: "POST", url: '/admin/?controller=vouchers&action=updateRelatedProducts', data: {id: e.added.id, action: add},    //Or you can e.added.text error: function () {     alert("error"); }        });    }    //OR you can play with val data instead    if (e.val) {        $.ajax({ type: "POST", url: '/admin/?controller=vouchers&action=updateRelatedProducts', data: {val: JSON.stringify(e.val)},    //Will send all the selected values error: function () {     alert("error"); }        });    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5615156.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存