«angular-foundation» 태그된 질문

9
컨트롤러에서 양식에 액세스 할 수 있습니까?
현재 다음을 사용하고 있습니다. $scope.$$childHead.customerForm[firstName]그래서 : <form name="customerForm"> <input type="text" name="firstName" ng-model="data.customer.firstName" tabindex="1" ng-disabled="!data.editable" validationcustomer /> </form> 그러나 이것은 Chrome에서만 작동합니다. 이제 다음을 시도했습니다. $scope.editCustomerForm[firstName]그래서 : <form name="customerForm" ng-model="editCustomerForm"> <input type="text" name="firstName" ng-model="data.customer.firstName" tabindex="1" ng-disabled="!data.editable" validationcustomer /> </form> 작동하지 않습니다. 내 양식은 Foundation 탭 안에 있습니다. 어떻게 액세스 할 수 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.