gpt4 book ai didi

javascript - 如何禁用 x-editable 中的 future 日期?

转载 作者:行者123 更新时间:2023-11-28 06:15:48 24 4
gpt4 key购买 nike

我尝试了很多方法,但都没有成功。我想禁用 x-editable 中的日期选择器中的 future 日期选择。这是我的 html 代码。

<a  href="#" editable-bsdate="TeamData.selectedDate"  
onshow="openPicker()"
onhide="closePicker()"
e-is-open="TeamData.pickeropened"
e-datepicker-popup="dd/MM/yyyy">

{{ (TeamData.selectedDate | date:"dd/MM/yyyy") || 'empty'}}
</a>

这是js代码

var date = new Date();
date = $scope.TeamData.selectedDate.toLocaleDateString();


//function for date picker when picker is open
function openPicker() {
$timeout(function () {
$scope.TeamData.pickeropened = true;
});
}

//function for date picker when picker is close
function closePicker() {

$scope.TeamData.pickeropened = false;
}

最佳答案

终于成功了在 html 中添加 e-max-Date='TeamData.maxEndDate' 并设置 js 文件中的 $scope.maxEndDate = new Date();

<a  href="#" editable-bsdate="TeamData.selectedDate"  
onshow="openPicker()"
onhide="closePicker()"
e-is-open="TeamData.pickeropened"
e-max-Date='TeamData.maxEndDate'
e-datepicker-popup="dd/MM/yyyy">

{{ (TeamData.selectedDate | date:"dd/MM/yyyy") || 'empty'}} </a>

关于javascript - 如何禁用 x-editable 中的 future 日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35980740/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com