我试图在 HTML 页面上单击图像时获取鼠标指针的坐标,用户必须单击图像,我想使用 javascript 获取单击位置的坐标并写入文件服务器本身。我正在使用 site44 从我的 Dropbox 帐户托管。我无法将坐标写入文件。
<html>
<head>
<title>image click test</title>
<script type="text/javascript">
function coord()
{
var x;
var y;
x=event.offsetX;
y=event.offsetY;
ActiveXObject("Scripting.FileSystemObject");
var file = object.CreateTextFile("hello.txt",false);
file.WriteLine(x);
file.WriteLine("by");
file.WriteLine(y);
file.Close();
}
</script>
</head>
<body onclick="coord()">This is a sample image, please click anywhere on the image. But ensure you click only once.<br>
<img src="index_catfish.jpg" alt="Click Image" usemap="#imageclick"/>
<map name="imageclick">
</map>
</body>
</html>