angularjs 如何在html 5 datepicker输入类型中调用单击日期时的函数

2vuwiymt  于 2022-10-31  发布在  Angular
关注(0)|答案(2)|浏览(166)

我有一个html5的日期-时间选择器。现在鼠标点击(选择)的日期从日期选择器我想调用一个函数。我想知道我们如何才能做到这一点在angular js...有人能帮助我吗?
HTML格式:

<div class="col-lg-4">
 <input class="form-control" type="datetime" date-time auto-close="true" view="date" 
  min-view="date" format="dd/MM/yyyy" ng-model="$root.Details.date" value = "{{dob}}">
 </div>

class CreateCustomerCtrl {
constructor($scope,$rootScope,$http,$state,$reactive,$timeout,Notification)
{

//logic here
}
export default angular.module('createCustomer', [
angularMeteor
])
.component('newCustomer', {
templateUrl: 'client/customer/new-customer.html',
 controller:['$scope','$rootScope','$http','$state','$reactive','$timeout','Notification'
,customerCtrl]});

所以在选择日期时,我想调用一个函数。谢谢x1c 0d1x

o4hqfura

o4hqfura1#

您应该尝试<input type="date" onchange="return function(this) />;"return您的函数来执行您想要执行的任何操作。

4sup72z8

4sup72z82#

您可以在输入上使用ng-change="yourFunc()"事件,其中ng-model="myDate"用于绑定值,并且可以在函数内部放置您逻辑

相关问题