如何插入字段集通知使用 jquery现在我有这个 form action="" method="post"all dynamic field generated with db and array/form 我想在表单标记之间添加fieldset,以便代码成为 form action="" method="post"fieldsetall d
<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