H5基础知识第十四课时(用JQuery确定鼠标位置)

html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>鼠标位置title>
head>
<body >
    <p>p>
body>
<script src="../../js/jquery-3.1.1.min.js">script>
<script>

        $(document).mouseover(function (e) {
            var x=e.pageX;
             var y=e.pageY;
            console.log(x);
            console.log(y);
           $("p").html("X轴:"+x+"  Y轴:"+y);
        })

script>

html>

你可能感兴趣的:(H5基础知识第十四课时(用JQuery确定鼠标位置))