我想知道是否可以做这样的事情:
<form>
some fields here
</form>
<div id=content>
content
</div>
<form=continued>
more fields here
</form>
我正在Joomla中构建它,因此加载3个模块atm。 我想合并这两种形式,而不会破坏我的布局顺序。
答案 0 :(得分:2)
不,那是不可能的。但是,这是可能的:
<form>
some fields here
<div id="content">
content
</div>
</form>