我在 IE 中出现两个中断 < Br /> 时遇到问题,
如果我有一个正常的休息时间
<wcl:GridView ....... />
<br />
<wcl:Button runat="server" ID="btnAddAnotherQuote" OnClientClick='AddDeliveryQuote(this);return false;' />
<wcl:HelpDialog runat="server" ID="hdDeliveryQuotes" />
然后它出现在 Firefox 和 IE 中就好了。但如果我这样做:
<br runat="server" id="brAddAnotherQuote" />
<wcl:Button runat="server" ID="btnAddAnotherQuote" OnClientClick='AddDeliveryQuote(this);return false;' />
<wcl:HelpDialog runat="server" ID="hdDeliveryQuotes" />
然后查看 IE 的源代码,它会生成两个
Once,其 ID 为 brAddAnotherQuote 和一个简单的 "< br />" 直接在它下面这在 Firefox 中不会发生
这可能是什么原因造成的?