Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有可能做这样的事情:
<form> some fields here </form> <div id=content> content </div> <form=continued> more fields here </form>
我在 Joomla 中构建它,因此加载了 3 个模块 atm。我想合并这两种形式,而不破坏我的布局顺序。
不,那是不可能的。但是,这是可能的:
<form> some fields here <div id="content"> content </div> </form>