gpt4 book ai didi

javascript - 如何在 DartPad 中通过鼠标单击获得 X 和 Y?

转载 作者:行者123 更新时间:2023-12-01 00:23:45 25 4
gpt4 key购买 nike

我正在尝试在 Dart 中单击鼠标来创建一个新对象。

最佳答案

您可以使用 offset 属性获取 X 和 Y 坐标。欲了解更多信息,您可以查看documentation 。您的代码应如下所示:

Dart :

import 'dart:html';

void main() {
document.onClick.listen(findCoordinates);
}

void findCoordinates(evt) {
querySelector('#hello').text = "x: " + evt.offset.x.toString() + " y: " + evt.offset.y.toString();
/// here you can create a whatever object you like
}

HTML:

<!DOCTYPE html>
<html>
<head>
<title>Page</title>
</head>
<body>
<h1 id="hello">This is a Heading</h1>
</body>
</html>

关于javascript - 如何在 DartPad 中通过鼠标单击获得 X 和 Y?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59186353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com