39 lines
838 B
HTML
39 lines
838 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
body,html{
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
span {
|
|
position: absolute;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
</body>
|
|
|
|
<script>
|
|
var body = document.querySelector("body");
|
|
|
|
body.onclick = function (event) {
|
|
var x = event.clientX, y = event.clientY;
|
|
|
|
var span = document.createElement("span");
|
|
|
|
span.innerText = "哈哈哈";
|
|
span.style.left = `${x}px`;
|
|
span.style.top = `${y}px`;
|
|
console.log(span);
|
|
|
|
body.appendChild(span)
|
|
}
|
|
</script>
|
|
</html> |