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.
幅が 200 ピクセルの div があるとします。たとえば、中央をクリックしてコンソールに 100 ピクセルなどをログインさせたいとします (左端の右にある 20 ピクセルをクリックすると、たとえば 20 をログに記録したいと思います)。 )
これは可能ですか?
http://jsfiddle.net/KrJ7b/
$('#mydiv').on('click',function(e){ console.log(e.clientX - $(this).offset().left); });