IE7删除一个标签,并将另一个标签随机放置在标签后面几行。这对我来说毫无意义哈哈。希望有人比我更了解旧IE的工作原理。谢谢你的帮助!
以下是实际代码:
<LI><LABEL>Comments (extra card readers, other questions, etc.) </LABEL><TEXTAREA></TEXTAREA></LI>
</UL>
<TABLE style="MARGIN-TOP: -15px">
<TBODY>
<TR>
<TD><LABEL>By clicking on the submit button below, you warrant that you understand and agree to the terms and conditions of the Merchant Service Agreement.</LABEL></TD>
<TD><INPUT id=terms type=checkbox name=terms></TD>
<TD class=status></TD>
</TR>
</TBODY>
</TABLE>
<INPUT class=submit value=Submit type=submit name=Submit jQuery1287759194812="2">
</FORM>
<DIV class=clr></DIV>
…但是IE是这样渲染的:
<LI><LABEL>Comments (extra card readers, other questions, etc.) </LABEL><TEXTAREA></TEXTAREA>
<UL></UL>
<TABLE style="MARGIN-TOP: -15px">
<TBODY>
<TR>
<TD><LABEL>By clicking on the submit button below, you warrant that you understand and agree to the terms and conditions of the Merchant Service Agreement.</LABEL></TD>
<TD><INPUT id=terms type=checkbox name=terms></TD>
<TD class=status></TD>
</TR>
</TBODY>
</TABLE>
<INPUT class=submit value=Submit type=submit name=Submit jQuery1287759194812="2">
</FORM>
<DIV class=clr></DIV>
</LI>