SimpleModal 奇怪的 ASP.NET 按钮问题
您好,我有以下代码
$('#<%= btnOpen.ClientID %>').click(function() {
$('#content').modal();
});
<asp:Button ID="btnOpen" runat="server" Text="Open" />
当我单击按钮时,模式窗口将出现大约 0.5 秒,然后立即消失。有人可以帮助我吗?多谢!
Hi I have the following codes
$('#<%= btnOpen.ClientID %>').click(function() {
$('#content').modal();
});
<asp:Button ID="btnOpen" runat="server" Text="Open" />
When I click on the button, the modal window will appear for about 0.5 second and disappear right away.Can anyone help me please? Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试用这个。我想说正在发生回发,因此使用
event.preventDefault()
可以阻止回发。Try with this. I'd say that a postback is happening so with
event.preventDefault()
you prevent the postback.