0

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

<form>
some fields here
</form>

<div id=content>
content
</div>

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

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

4

1 回答 1

2

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

<form>
some fields here

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

</form>
于 2013-04-16T15:28:07.863 回答