0
這裏是我的情況:選擇二 - 無限循環使用觸發器(「變化」)
$('select').select2();
$('select').on('change', function() {
// calling a function
myFunction();
});
function myFunction() {
// changes my select values
// so I need to update the select for seing the news values
$('select').trigger('change');
// hehe I fire the change event so myFunction is called again and again
}
我能做些什麼來避免這種行爲?此致...