angularJS - getting x & y positions from mouseclick in div

前端 未结 3 1273
深忆病人
深忆病人 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:01

    You need to change event.x to event.offsetX and event.y to event.offsetY

    You didn't add the template definition but I'll add it just in case:

提交回复
热议问题