简体   繁体   中英

What's the state of art steps to calculate the position of an event?

Suppose the event is e . How to know where it happened (as in position)?

I'm also using jQuery.

I think you're looking for e.pageX and e.pageY :

$('#something').click(function(e) {
  alert('event happended at ' + e.pageX + ', ' + e.pageY)
})

e.target给出触发事件的对象。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM