angular.js - ng 自动获取焦点
PHPz
PHPz 2017-05-15 17:07:40
0
1
1042

input自动获取焦点目前使用js完成,怎么用ng写?

PHPz
PHPz

学习是最好的投资!

Antworte allen(1)
刘奇

我的思路是写一个指令 然后在input上挂指令

var myApp = angular.module('myApp',[]);
    myApp.directive('autoFocus', function(){
          return function(scope, element){
            element[0].focus();
          };
    });
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage