显示同一 div 的多个实例
我有一个姓名列表,我希望能够使用表单向其中添加数据。
例如,
约翰·多伊
莎莉·史密斯
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 SmithFORM 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
.clone()
。您可以复制该元素,然后附加到另一个元素之后:Try
.clone()
. You can copy the element, and then append after another element: