我有一个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
2条答案
按热度按时间o4hqfura1#
您应该尝试
<input type="date" onchange="return function(this) />;"
和return
您的函数来执行您想要执行的任何操作。4sup72z82#
您可以在输入上使用
ng-change="yourFunc()"
事件,其中ng-model="myDate"
用于绑定值,并且可以在函数内部放置您逻辑