Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以上是 Internet Explorer 8 中复选框渲染的附加图像。
使用的代码是 <asp:CheckBox runat="server" ID="selectCheckBox" />
<asp:CheckBox runat="server" ID="selectCheckBox" />
虽然它在 Firefox 和 chrome 中完美呈现,但无法选中复选框,但任何帮助都会更好地解决不同浏览器中的这个呈现问题。谢谢。
您没有定义Text复选框。
Text
<asp:CheckBox ID="selectCheckBox" runat="server" Text="Label" Checked="False" OnCheckedChanged="selectCheckBoxChanged" />