어떻게 angularjs를 사용하여 텍스트 상자를 사용하여 초점을 얻습니까

1650 단어
<!DOCTYPE html>
<html ng-app="myApp">
<head>
    <title>angularjs-focus</title>
</head>
<body>
    <input type="text" set-Focus="">
    <script type="text/javascript" src="js/angular.min.js"></script>
    <script type="text/javascript">
    var myApp = angular.module('myApp',[]);
    myApp.directive('setFocus', function(){
          return function(scope, element){
            element[0].focus();
          };
    });
    </script>
</body>
</html>

좋은 웹페이지 즐겨찾기