如何插入字段集告知现在使用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>
答案 0 :(得分:5)
答案 1 :(得分:2)
或者你可以这样做:
var newForm = "<fieldset>"+$('form').html()+"</fieldset>";
$('form').html(newForm);