这是我编写的 javascript - 它提醒我.select2找到了四个实例和找到了四个select元素,并向控制台记录一条消息,但对我从 select2 框中选择的内容进行的任何更改实际上都不会记录或提醒我变化。我怀疑我使用了错误的选择器来查找要附加这些侦听器的对象change,但我在文档中找不到有关如何查找元素的完整示例select2。
$(document).on('change', '.select2-input', function(e) {
console.log('Detected a different change!');
alert('The other method of detecting changes worked!');
});
$('.select2').on('change', function(e) {
console.log('Detected a change!');
alert('Something was changed!');
});
console.log('Loaded!');
alert('Loaded v2 - found ' + $('.select2').length + ' instances of select2 and ' + $('select').length + ' instances of select.');
尚方宝剑之说
相关分类