选择typeahead.js中的元素后清除表单时出现问题。我附上了事件监听器代码:
.on('typeahead:select', function (e, datum) {
console.log($(this));
$(this).val('');
e.preventDefault();
})
有什么问题?通过开发者控制台,一切都被悄悄地清理干净。
选择typeahead.js中的元素后清除表单时出现问题。我附上了事件监听器代码:
.on('typeahead:select', function (e, datum) {
console.log($(this));
$(this).val('');
e.preventDefault();
})
有什么问题?通过开发者控制台,一切都被悄悄地清理干净。
1 个回答