Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个 200px 宽的 div,我希望在我单击中间后登录控制台 100px,依此类推(如果我单击左边缘右侧的 20px,例如我想登录 20 )
这可能吗?有任何指示吗?
http://jsfiddle.net/KrJ7b/
$('#mydiv').on('click',function(e){ console.log(e.clientX - $(this).offset().left); });