Fancybox 和 ASP.NET 按钮 OnClientClick
今天我使用 window.showModalDialog 函数向用户显示模式弹出窗口。我正在尝试使用 Fancybox 插件来替换它。但是,我有一个问题。我将弹出函数放在按钮的 OnClinetClick 属性中。当弹出窗口关闭时,将触发服务器的 OnClick。当我使用 Fancybox 插件时,弹出窗口和服务器 OnClick 会同时执行。有没有办法像 window.showModalialog 一样使用 fancybox?我想仅在 fancybox 弹出窗口关闭时触发服务器 OnClick。
谢谢
Today i use a window.showModalDialog function to show a modal popup to user. I'm tryng to use the Fancybox plugin to replace it. But, i'm having a problem. I put the popup function in a OnClinetClick property of my button. When the popup is closed the OnClick of the server is fired. When I use the Fancybox plugin the popup and the server OnClick are executed at the same time. Is there a way to use fancybox like a window.showModalialog? I want to fire the server OnClick only when the fancybox popup is closed.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在看不到代码的情况下很难调试,但是您是否尝试过添加“return false;”在 OnClientClick 中调用 Fancybox 之后?
例如:
这应该可以防止回发。然后,您可以挂钩 Fancybox 的关闭事件(或其他事件)来执行关闭时需要执行的操作。
Tough to debug without seeing your code, but have you tried adding 'return false;' after your call to Fancybox in OnClientClick?
eg:
That should prevent the postback. You can then hook into the Fancybox's close event (or whatever) to do what you need to do when it's closed.