angularJS - getting x & y positions from mouseclick in div

前端 未结 3 1265
深忆病人
深忆病人 2020-12-29 19:20

I made a function that should add an item on the position I clicked inside a div. Now the problem with this function is, every time I click, it takes the x & y position

3条回答
  •  温柔的废话
    2020-12-29 20:15

    For those on angular who are using dragging libraries and want the position of the element that was dragged:

    and in the controller

    $scope.onDrag($event){
          console.log("X ->",$event.originalEvent.pageX,"Y ->",$event.originalEvent.pageY)
    
     }
    

提交回复
热议问题