使用 jquery .click 创建元素

发布于 2024-12-07 20:01:14 字数 205 浏览 0 评论 0原文

我目前正在为朋友的网站开发一个小型“装扮”类型的功能,但遇到了逻辑问题。

用来装扮你的头像的物品必须是购买的。购买的物品会加载到屏幕上供用户单击(作为图像),单击时应在 div 内创建一个可拖动的 jqueryui。我遇到的问题是我不知道如何让它在 div 内创建精确的图像。

我想我正在寻找的是一种将在 div 内单击的图像重新创建为可拖动的方法。有人有建议吗?

I'm currently working on a small "dress-up" type feature for a friend's website, but have run into a logic issue.

The items that you may use to dress your avatar must be bought. Bought items are loaded on screen for users to click (as an image) and when clicked should create a jqueryui draggable inside a div. The problem I've run into, is I can't figure out how to make it create that exact image inside the div.

I guess what I'm looking for is a way to recreate the image clicked inside the div as a draggable. Anyone have suggestions?

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

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

发布评论

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

评论(1

耶耶耶 2024-12-14 20:01:14

伪代码:

image.click(function() {
    div.append($(this).clone());
});

Pseudo-code:

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