码迷,mamicode.com
首页 > Web开发 > 详细

如何使用angularjs实现文本框获取焦点

时间:2016-01-30 17:43:10      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

<!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>

 

如何使用angularjs实现文本框获取焦点

标签:

原文地址:http://www.cnblogs.com/modou/p/5170949.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!