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

时间:2013-01-20 18:43:20

标签: jquery forms fieldset

如何插入字段集告知现在使用jquery我有这个

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

all dynamic field generated with db and array

</form>

我想在表单标记之间添加字段集,以便代码变为

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

all dynamic field generated with db and array

</fieldset>
</form>

2 个答案:

答案 0 :(得分:5)

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

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

Fiddle

.wrapInner docs

答案 1 :(得分:2)

或者你可以这样做:

    var newForm = "<fieldset>"+$('form').html()+"</fieldset>";
    $('form').html(newForm);