我有以下代码:
elem.bind('keydown keyup keypress', function(event) {}
我使用keydown,keyup,keypress事件。 并想要添加加载事件。 如何添加加载事件?
答案 0 :(得分:1)
angular("mymodule").directive( 'onReady', function( $parse ) {
return {
restrict: 'AE',
link: function( $scope, elem, attrs ) {
elem.ready(function(){
$scope.$apply(function(){
var func = $parse(attrs.onReady);
func($scope);
})
})
}
}
})
像
一样使用它<div on-ready="mymethod()"></div>
其中mymethod是控制器中的ur函数