<html xmlns="http://www.w3.org/1999/xhtml" >
<head >
    <title>教师成套入题</title>
<SCRIPT>
function clientCoords()
{
    var offsetInfo = ""
    clientInfo = "The x coordinate is: " + window.event.clientX + "\r"
    clientInfo += "The y coordinate is: " + window.event.clientY + "\r"
    alert(clientInfo);
}
</SCRIPT>
</HEAD>
<BODY onmousemove="window.status = 'X=' + window.event.clientX +
    ' Y=' + window.event.clientY"
    ondblclick="clientCoords()">
</body>
</html>