我得到form-group
一些text-input
。用户可以自由填充任意数量的字段。
填写表格后,将其传递给php处理器,该处理器负责创建&填充模板。
我在创建适当的网格/模板以在页面中定位不同数量的元素时遇到问题,这是由于用户填充元素的多样性而产生的。
以下是尝试的结果:
<p class="header">
<b>Header which the user has token</b>
</p>
<br />
<!-- Number of a tags is based on number of filled fields-->
<a href="#field1"><p>Theme from the user</p></a>
<a href="#field2"><p>Theme from the user</p></a>
<a href="#field3"><p>Theme from the user</p></a>
<br />
<a name="field1">
<h2>Text from the user who filled up the textinput</h2>
</a>
<br />
<a name="field2">
<h2>Text from the user who filled up the textinput</h2>
</a>
<br />
<a name="field3">
<h2>Text from the user who filled up the textinput</h2>
</a>
有没有人有类似的经历?我很欣赏任何创意。