我正在尝试在输入上添加事件模糊以隐藏日历。
我用来显示日历的插件是下面的eternicode/bootstrap-datepicker。
这是源代码http://jsfiddle.net/KLpq7/75/
var inputs = $('.datepicker').datepicker({
autoclose: true
});
inputs.on('blur', function () {
console.log($(this));
// I would like to hide just the date picker
//$(this).hide();
});