Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个页面有两种模式:查看和编辑。当我单击编辑按钮时,我使用 jQuery 将表单加载到页面正文中。我想做的是将标题和类别字段移动到通常以“查看”模式出现的页面标题。问题是表单标签仍在正文中。什么是扩展表单标签范围以包含标题的好方法?我已成功将标题和类别字段移至标题,但它们现在超出了表单的范围。
我使用 unwrap 和 wrap 解决了这个问题:
var form = $("#my_form"); form.children().unwrap(); $('#full_page').wrap(form);