用html设计一个含有表单的页面,并在表单上放一个文本框,当鼠标在表单上移动时,把相对于表单的鼠标坐标的显示在文本框中
时间: 2024-02-25 09:56:32 浏览: 61
在一个form用一个SUBMIT(或button)分别提交到两个处理表单页面的代码
好的,以下是示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>表单页面</title>
<script>
function showCoords(event) {
var x = event.clientX;
var y = event.clientY;
var coords = "X坐标: " + x + ", Y坐标: " + y;
document.getElementById("coords").value = coords;
}
</script>
</head>
<body>
<form onmousemove="showCoords(event)">
<label for="coords">鼠标坐标:</label>
<input type="text" id="coords" name="coords" readonly>
</form>
</body>
</html>
```
这段代码创建了一个包含表单和文本框的页面。在表单上移动鼠标时,JavaScript函数`showCoords(event)`会被调用。该函数获取鼠标相对于文档的坐标,并将坐标信息显示在文本框中。注意,文本框是只读的,以防止用户手动输入数据。
阅读全文