This is a problem that I can’t solve even if I tear my brain apart↓
Front-ends! As shown in the figure, how to obtain the coordinate distance from the leftmost side of p to the mouse position?
光陰似箭催人老,日月如移越少年。
body{
margin:0;
padding:0;
}
#p{
width:200px;
height:100px;
border:1px solid #000;
position:absolute;
}
//如果p有定位父級元素存在還需要減去offsetTop值
$("#p").bind("click",function(ev){
console.log(ev.clientX - $(this).offset().left);
})
$("p").on("click",function(e){
var disX = e.clientX - e.offsetX; //disX就是當(dāng)前p最左側(cè)到鼠標(biāo)位置的坐標(biāo)距離
});