首页 > Web开发 > 详细

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

时间:2016-01-30 17:40:42      阅读:154      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!