如何将事件绑定到 Canvas 项目?
如果我使用画布来显示数据,并且希望用户能够单击画布上的各个项目以获得更多信息或以某种方式与之交互,那么最好的方法是什么?
在线搜索我可以找到有关如何将事件绑定到标签的信息,但这似乎比我想要的更间接。我不想用标签对项目进行分组,而是当用户单击画布上的特定项目时进行特定的函数调用。
If I'm using a canvas to display data and I want the user to be able to click on various items on the canvas in order to get more information or interact with it in some way, what's the best way of going about this?
Searching online I can find information about how to bind events to tags but that seems to be more indirect then what I want. I don't want to group items with tags, but rather have specific function calls when the user clicks specific items on the canvas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要与
Canvas
对象中包含的对象进行交互,您需要使用tag_bind()
,其格式如下:tag_bind(item, event=None, callback=None, add=None)
item 参数可以是标签,也可以是 id。
下面是一个例子来说明这个概念:
To interact with objects contained in a
Canvas
object you need to usetag_bind()
which has this format:tag_bind(item, event=None, callback=None, add=None)
The item parameter can be either a tag or an id.
Here is an example to illustrate the concept: