javascript - How to implement the distance between the inside of a DIV and the mouse in JS
大家讲道理
大家讲道理 2017-05-16 13:37:29
0
2
543

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?

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(2)
Ty80
    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就是当前p最左侧到鼠标位置的坐标距离
});
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!