显示同一 div 的多个实例

发布于 2024-11-02 06:19:17 字数 452 浏览 4 评论 0原文

我有一个姓名列表,我希望能够使用表单向其中添加数据。

例如,
约翰·多伊
莎莉·史密斯
Jennifer Jackson

我希望能够使用 jquery 和 div 中的表单在所选名称下显示表单。因此,如果用户单击 Sally Smith,表单 div 将显示在她的名字下方。

例如,
约翰·多伊
莎莉·史密斯
此处形成 DIV
Jennifer Jackson

我知道如何显示/隐藏 div,但我不知道如何多次重现同一个 div。每个div包含相同的信息,但需要显示在单击的名称下。如果我可以只创建一次 div 并将该 div 的标识符更改为与人名相同,那就太好了。 (即,class="sally-smith-form"

我是否需要为列表中的每个名称创建表单 div 或者是否有更好的方法?

I have a listing of names that I want to be able to add data to using a form.

e.g.,
John Doe
Sally Smith
Jennifer Jackson

I would like to be able to display the form under the selected name using jquery and a form in a div. So, if the user clicks on Sally Smith, the form div displays below her name.

e.g.,
John Doe
Sally Smith
FORM DIV HERE
Jennifer Jackson

I know how to show/hide a div, but I do not know how I can reproduce the same div multiple times. Each div contains the same information, but it needs to be displayed under the clicked name. It would be nice if I could just create the div once and change an identifier for the div to be the same as the person's name. (i.e., class="sally-smith-form")

Do I need to create the form div for each name in the listing or is there a better way?

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

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

发布评论

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

评论(1

就像说晚安 2024-11-09 06:19:17

尝试 .clone()。您可以复制该元素,然后附加到另一个元素之后:

$('#place_to_insert').after($('.sally-form-form:first').clone());

Try .clone(). You can copy the element, and then append after another element:

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