我在 Web 应用程序中有这个 html 脚本。
我知道,这是无效的 HTML,因为我不应该将表单相互嵌套,但是如果“某人”仍然这样做,我怎么能防止 IE 中的这种奇怪行为?是否有将无效表格保留在内部的解决方法?
<html><head>
<style>
form{
display: inline;
</style>
</head>
<body>
<form>
<table border="1">
<tr>
<td>first</td>
<td><form>...</form></td>
<td>second</td>
</tr>
</table>
</form>
这会导致 Internet Explorer 中的“第一个”和“第二个”之间出现换行符。
它看起来像这样: