14

我正在查看 AngularJs 并有一个问题,这是我的指令:

myApp.directive("enter", function(){
return{
    restrict: 'A',
    scope:{},
    controller: function($scope){
        $scope.logSomething=function(somevalue){
            console.log(somevalue+" is logged");
        }
    },
    template: '<input type="text" ng-model="myModel">'+
              '<div ng-click="logSomething(myModel)">click me</div>'
}
})

这可行,但我的问题是如何使用绑定单击而不是ng-click指令来做同样的事情?并不是说它更好(也许?),而是出于好奇

它应该包括这样的东西,但无法得到大局:

 function(scope, element, attrs){
    element.bind("click", function(){
        scope.$apply(attrs.enter);
    })
4

2 回答 2

17

试试这个:

myApp.directive("enter", function(){
  return{
    restrict: 'A',
    scope:{},
    controller: function($scope){
        $scope.logSomething=function(somevalue){
            console.log(somevalue+" is logged");
        }
    },
    template: '<input type="text" ng-model="myModel">'+
              '<div button>click me</div>'
}
});

myApp.directive("button", function(){   
  return{
    restrict: 'A',
    link: function(scope , element){
       element.bind("click", function(e){
          scope.logSomething( scope.myModel );
       });
    }
}
});

Plunk:http ://plnkr.co/edit/RCcrs5?p=preview

于 2013-08-06T11:52:44.650 回答
3

正如您所指出的,您可以简单地使用element.bind

myApp.directive(
    'clickMe',
    function () {
        return {
            template : '<div>Click me !</div>',
            replace : true,
            link : function (scope, element) {
                element.bind('click', function ()
                {
                    alert('Clicked !');
                });
            },
        };
    }
);

Fiddle

但是,当然,在您的情况下,您必须改为使用ngClick

于 2013-08-06T11:48:27.860 回答