表格(第1部分) - 内容 - 表格(第2部分)

时间:2013-04-16 15:26:28

标签: php html forms

我想知道是否可以做这样的事情:

<form>
some fields here
</form>

<div id=content>
content
</div>

<form=continued>
more fields here
</form>

我正在Joomla中构建它,因此加载3个模块atm。 我想合并这两种形式,而不会破坏我的布局顺序。

1 个答案:

答案 0 :(得分:2)

不,那是不可能的。但是,这是可能的:

<form>
some fields here

<div id="content">
content
</div>

</form>