在运行时删除项目

发布于 2024-07-25 02:12:15 字数 129 浏览 3 评论 0原文

我在运行时通过鼠标拖动动态创建了一些形状,现在我想删除白板上的任何选定项目。我怎样才能实现这一点。 目前我可以通过“removeChild()”方法删除最后绘制的项目,但不能删除以前的项目。 请帮忙。

提前致谢。

I have created some shapes dynamically at run time by mouse drag, Now i want to delete any selected item the white board.How can i achieve that.
Currently i am able to delete the last drawn item through "removeChild()" method, but not the previous items.
Please help.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撩起发的微风 2024-08-01 02:12:16

幸运的是我很快就得到了答案。
要在运行时删除多个项目,我动态地为它们分配了 id,并完成了以下操作:

parentComponent.removeChild(parent.getChildByName("itemName"));

在尝试此操作之前,我正在执行

< strong>parentComponent.removeChild(item);

干杯!

Luckily i got my answer very soon.
To delete multiple items at run time i've assign the ids to them dyanimically and the done the following:

parentComponent.removeChild(parent.getChildByName("itemName"));

before trying this i was doing

parentComponent.removeChild(item);

Cheers !!!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文