gpt4 book ai didi

jquery - 将 form 标签内的所有控件移动到 div

转载 作者:太空宇宙 更新时间:2023-11-04 15:58:30 25 4
gpt4 key购买 nike

这是我用来将 div 添加到页面的 jQuery 代码。

var div = jQuery(document.createElement('div'));
div.attr('id', 'divFormWrapper');

div.css({
"position": "absolute",
"top": 0,
"left": 0,
"width": "100%",
"height": "100%",
"overflow": "auto",
"-webkit-overflow-scrolling": "touch",
"background-color": "orange",
"border": "none",
"z-index": 0,
"display": "block"
});

jQuery('form').wrap(div);

就是在form标签前加上div标签。我需要它在表单标签后添加 div 标签。

 <div id="divFormWrapper" style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; overflow-x: auto; overflow-y: auto; background-color: red; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; border-image: initial; z-index: 0; display: block; ">
<form name="Form1" method="post" id="Form1">

controls.......
</form>
</div>

这就是我需要它做的。

 <form name="Form1" method="post" id="Form1">
<div id="divFormWrapper" style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; overflow-x: auto; overflow-y: auto; background-color: red; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; border-image: initial; z-index: 0; display: block; ">
controls.......
</div>
</form>

最佳答案

代替 .wrap() 使用 .wrapInner() .

jsFiddle example .

关于jquery - 将 form 标签内的所有控件移动到 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10127959/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com