这个问题可能是由于AngularJS版本的不同导致的。尝试更新版本或使用以下代码:
在HTML文件中:
在JS文件中:
angular.module('MyApp', ['ngMaterial', 'ngMessages', 'material.svgAssetsCache']) .controller('AppCtrl', function() { this.myDate = new Date(); this.minDate = new Date( this.myDate.getFullYear(), this.myDate.getMonth() - 2, this.myDate.getDate()); this.maxDate = new Date( this.myDate.getFullYear(), this.myDate.getMonth() + 2, this.myDate.getDate()); this.onlyWeekendsPredicate = function(date) { var day = date.getDay(); return day === 0 || day === 6; }; });
这将确保在平板电脑上正确显示下拉菜单。