AngularJS select 기본 값 설정 방법

1984 단어 AngularJSselect
AngularJS 의 select 설정 기본 값
Angular 를 사용 할 때 select 탭 을 사용 할 때 바 인 딩 데이터 지정 기본 디 스 플레이 값 을 만 날 수 있 습 니 다.

<!DOCTYPE html> 
<html ng-app="noteApp" ng-controller="noteCtrl"> 
<head> 
 
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 
<meta http-equiv="description" content="this is my page"> 
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> 
<script type="text/javascript" src="../plugins/angular.min.js"></script> 
 
</head> 
<body ng-app="noteApp" ng-controller="noteCtrl"> 
  <select ng-options="act.id as act.name for act in typeList" 
    ng-model="ZNoteVo.type"></select> 
 
</body> 
<script type="text/javascript"> 
  angular.module("noteApp", []).controller("noteCtrl", function($scope) { 
    $scope.typeList = [ { 
      id : '01', 
      name : "  " 
    }, { 
      id : '02', 
      name : "  " 
    }, { 
      id : '03', 
      name : "  " 
    }, { 
      id : '04', 
      name : "  " 
    }, { 
      id : '05', 
      name : "  " 
    }, { 
      id : '99', 
      name : "  " 
    } ]; 
    $scope.ZNoteVo={}; 
    $scope.ZNoteVo.type = "03"; 
  }); 
</script> 
</html> 

우리 가 유형 을 03 으로 선택 하면 기본적으로 회의 입 니 다.

읽 어 주 셔 서 감사합니다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다.여러분 이 본 사이트 에 대한 지지 에 감 사 드 립 니 다.궁금 한 점 이 있 으 면 메 시 지 를 남기 거나 본 사이트 지역사회 에 가서 토론 을 하고 여러분 이 함께 발전 하 세 요!

좋은 웹페이지 즐겨찾기