为什么不能显示来自html5触屏版

2025-04-14 10:44:00
推荐回答(1个)
回答1:

function show_coords(event)
{
event = event||window.event;
x=event.clientX
y=event.clientY
alert("X 坐标: " + x + ", Y 坐标: " + y)
}