最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Pass element to Angular directive - Stack Overflow

programmeradmin1浏览0评论

I have a simple popup directive similar to .js

I need to position my popup close to element that initiated the open.

What is best way to make this? Would capturing the initiator with ng-click="open($event)" and passing to directive work? (here is sample of this element capturing / )

$scope.open= function (e) {
   var elem = angular.element(e.srcElement);
}

How do I then pass this angular.element(e.srcElement) to directive ? (directive would then do some calculations based on position of that passed dom element and re-position the popup)

I have a simple popup directive similar to https://github./angular-ui/bootstrap/blob/master/src/modal/modal.js

I need to position my popup close to element that initiated the open.

What is best way to make this? Would capturing the initiator with ng-click="open($event)" and passing to directive work? (here is sample of this element capturing http://jsfiddle/Amnesiac/5z5Qz/3/ )

$scope.open= function (e) {
   var elem = angular.element(e.srcElement);
}

How do I then pass this angular.element(e.srcElement) to directive ? (directive would then do some calculations based on position of that passed dom element and re-position the popup)

Share Improve this question edited Aug 6, 2013 at 22:47 Shog9 160k36 gold badges235 silver badges240 bronze badges asked Aug 6, 2013 at 22:32 dzolnjandzolnjan 1,2634 gold badges14 silver badges26 bronze badges 1
  • I think you want to bind a controller within the directive so you can control the scope of your functions. – Dan Kanze Commented Aug 6, 2013 at 23:03
Add a ment  | 

1 Answer 1

Reset to default 8

Pass it like you would any other scope property, e.g., modal el="clickedElement":

<button id="myId" ng-class="{'blueBg': blueBg}" ng-click="hi($event)">click me</button> 
<div modal el="clickedElement"></div>

angular.module('Test',[])
.controller('Foo', function ($scope, $element) {
    $scope.blueBg = false;
    $scope.hi = function (ev) {
       $scope.blueBg = true;
       $scope.clickedElement = angular.element(ev.srcElement);
    }
})
.directive('modal', function() {
    return {
        link: function(scope, element, attrs) {
            scope.$watch(attrs.el, function(value) {
                if(value !== undefined) {
                    console.log('element=',value);
...

fiddle

发布评论

评论列表(0)

  1. 暂无评论