0
날짜 선택 도구에서 날짜를 마우스로 클릭 (선택)하고 있습니다. 함수를 호출하고 싶습니다. 각도 js에서 할 수 ... 누군가 나를 도울 수 있습니다.html로 날짜를 클릭 할 때 함수를 호출하는 방법 5 datepicker 입력 유형
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>
JS 날짜의 선택에 따라서
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]});
시도했지만 작동하지 않았습니다. 함수가 호출되지 않습니다. –
$ scope.yourFunc = function() { } 시도해 보셨습니까? –
죄송합니다.이 함수를 사용하지 않아 죄송합니다. 함수가 호출되지 않습니다. –