AngularJS 양식
번역 결과:
AngularJS 양식은 입력 컨트롤 모음입니다.
AngularJS 양식통사론
다음 HTML 입력 요소를 HTML 컨트롤이라고 합니다.
input 요소
select 요소
button 요소
textarea 요소
AngularJS 양식예
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.bootcss.com/angular.js/1.4.6/angular.min.js"></script> </head> <body> <div ng-app="myApp" ng-controller="formCtrl"> <form> First Name: <input type="text" ng-model="firstname"> </form> </div> <script> var app = angular.module('myApp', []); app.controller('formCtrl', function($scope) { $scope.firstname = "John"; }); </script> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요