我有这个表格:
<div data-role="content">
<form action="#" method="post" id="cen">
<table>
<thead>
<tr>
<th>Contacto</th>
<th>Fecha</th>
<th>Hora</th>
<th >Mensaje</th>
</tr>
</thead>
<tbody>
<tr>
<td><input name="user" id="correo" type="email" placeholder="contacto@correo.com" style="width: 10em;"></td>
<td><input name="date" id="fecha" type="date" data-role="datebox" data-options='{"mode": "calbox"}'></td>
<td><input id="hora" name="hour" type="text" data-role="datebox" data-options='{"mode": "timebox", "overrideTimeFormat": 12}'></td>
<td><textarea id="mensaje" name="mensaje" placeholder="Su mensaje Aqui" style="width: 15em; max-width: 15em;"></textarea></td>
</tr>
</tbody>
</table>
<center><input type="submit" value="Enviar" data-inline="true"></center>
</form>
</div>
我的问题是,我怎样才能让我的表单实时创建字段?因为我需要为用户提供发送尽可能多的信息的能力