<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style type="text/css"> <!-- #big { display: block; position: absolute; height: 500px; width: 500px; background-color: #003399; } #big #small { background-color: #0066FF; height: 50px; width: 50px; position: absolute; right:0; bottom:0; } --> </style>
</head>
<body> <div id="big"> <div id="small"></div> </div>
<script type="text/javascript"> document.getElementById("big").onclick = move;
function move(){ document.getElementById("small").style.left = event.clientX; document.getElementById("small").style.top = event.clientY; } </script> </body> </html> |