linkbutton 不会在 IE7 中为所有子元素回发
在下面的代码中,在 IE7 中单击“单击此处”文本会激发服务器 onclick 事件,但单击 img 不会?
<asp:LinkButton ID="lbFoodSwapCourse" OnClick="LoadStepTwo_Click" runat="server">
<span class="foodSwapBigCourseLink" runat="server">
<span class="foodSwapBigCourseImage"><img src="images/star.jpg" /></span>
<span class="foodSwapBigCourseText">click here</span>
</span>
</asp:LinkButton>
In the following code, in IE7 clicking on the "click here" text instigates the server onclick event, but clicking on the img does not?
<asp:LinkButton ID="lbFoodSwapCourse" OnClick="LoadStepTwo_Click" runat="server">
<span class="foodSwapBigCourseLink" runat="server">
<span class="foodSwapBigCourseImage"><img src="images/star.jpg" /></span>
<span class="foodSwapBigCourseText">click here</span>
</span>
</asp:LinkButton>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将此标记为 ASP 或 .NET 问题。任何以 < 开头的内容asp: 特定于这些语言,而不是标准 HTML。
You should tag this as an ASP or .NET issue. Anything that begins with the < asp: is specific to those languages, and not standard HTML.