当前位置 : 主页 > 网页制作 > JQuery >

Jquery:在表单之间添加fieldset元素

来源:互联网 收集:自由互联 发布时间:2021-06-15
如何插入字段集通知使用 jquery现在我有这个 form action="" method="post"all dynamic field generated with db and array/form 我想在表单标记之间添加fieldset,以便代码成为 form action="" method="post"fieldsetall d
如何插入字段集通知使用 jquery现在我有这个

<form action="" method="post">

all dynamic field generated with db and array

</form>

我想在表单标记之间添加fieldset,以便代码成为

<form action="" method="post">
<fieldset>

all dynamic field generated with db and array

</fieldset>
</form>
我建议做这个服务器端,但如果你真的需要使用jQuery:

$('form').wrapInner('<fieldset />');

Fiddle

.wrapInner docs

网友评论