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,以此类推