html文件中table里的tr标签问题,第一个tr标签在IE里显示不正常,显示成了两行,求解释,满意加分!!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html文件中table里的tr标签问题,第一个tr标签在IE里显示不正常,显示成了两行,求解释,满意加分!!相关的知识,希望对你有一定的参考价值。

<html><head><title>测试页面</title></head><body><table align="left"><tr><td>请输入学生学号<form target="mainFrame" action="delBySno.jsp" methos="post" /><input type="text" name="sno" size=20 /><input type="submit" name="del_By_Sno" value="按学号删除" /></td></tr><tr><td>请输入学生姓名<form target="mainFrame" action="delBySname.jsp" methos="post" /><input type="text" name="sname" size=20 /><input type="submit" name="del_By_Sname" value="按姓名删除" /></td></tr><tr><td>请输入学生性别<form target="mainFrame" action="delBySex.jsp" methos="post" /><input type="text" name="sex" size=20 /><input type="submit" name="del_By_Sex" value="按性别删除" /></td></tr><tr><td>请输入学生住址<form target="mainFrame" action="delByPlace.jsp" methos="post" /><input type="text" name="place" size=20 /><input type="submit" name="del_By_palce" value="按住址删除" /></td></tr></table></body></html>

参考技术A form 标签应该写在tr标签外面的,这样即不会产品因为FORM而多出的间距,成不会出现成两行【特别注意标签的书写规则】,其实就是你的每个表单都没有</form>的结束标签,提交时会出错的。
比如:
<table align="left">
<form target="mainFrame" action="delBySno.jsp" methos="post" />
<tr>
<td>
请输入学生学号

<input type="text" name="sno" size=20 />
<input type="submit" name="del_By_Sno" value="按学号删除" />
</td>
</tr>
</form>
</table>
参考技术B 不是TR标签的问题,是FORM标签的问题.这样改一下.
<tr>
<td>
<form target="mainFrame" action="delBySex.jsp" methos="post" style="margin:0; padding:0;">
请输入学生性别
<input type="text" name="sex" size=20 />

<input type="submit" name="del_By_Sex" value="按性别删除" />
</form>
</td>
</tr>
全部都改,你的form标签都没有关闭.本回答被提问者采纳

以上是关于html文件中table里的tr标签问题,第一个tr标签在IE里显示不正常,显示成了两行,求解释,满意加分!!的主要内容,如果未能解决你的问题,请参考以下文章

html 中如何在table标签中添加一个编号列呢?就是第一行编号是1,第二行编号是2,以此类推

HTML中如何利用正则表达式去除tr td标签

HTML 中table的结构以及拼接

table怎么写CSS让第一行的th占一整行不影响下面的

html里面加thead、tbody 以及 tfoot 有啥用?直接用<tr><td>不就可以了吗

用HTML的<table>标签,怎么写出一个三行两列的表格?