如何在表单内插入表格
发布网友
发布时间:2022-05-15 23:56
我来回答
共2个回答
热心网友
时间:2024-02-29 08:55
<form action="xxx" method="post">
<table>
<tr>
<td>Username</td>
<td> <input type="text" name="keyWord"/>
</td>
</tr>
<tr>
<td>Password:</td>
<td> <input type="password" name="keyWord"/>
</td>
</tr>
<tr>
<td><input type="submit" value="提交" />
</td>
<td> input type="reset" value="z注销" />
</td>
</tr>
</table>
</form>
他想要这样的
热心网友
时间:2024-02-29 08:56
<form action="xxx" method="post">
<table>
<input type="text" name="keyWord"/>
<input type="submit" value="提交" />
</table>
</form>
你的意思是这样?