我的意思是,超越哲学部分说" Jquery也是Javascript",我想知道为什么我只能找到Jquery event.pageX/Y descriptions但仍然可以使用类似的代码这样:
<!DOCTYPE html>
<html>
<head>
<script>
function show_coords(event)
{
var x=event.pageX;
var y=event.pageY;
alert("X coords: " + x + ", Y coords: " + y);
}
</script>
</head>
<body>
<p onmousedown="show_coords(event)">Click this paragraph,
and an alert box will alert the x and y coordinates
of the mouse pointer.</p>
</body>
</html>
答案 0 :(得分:1)
事件属性确实是DOM规范的一部分。这些是两个相关的参考文献: