Fancybox 和 ASP.NET 按钮 OnClientClick

发布于 2024-10-21 09:13:53 字数 269 浏览 1 评论 0原文

今天我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绿萝 2024-10-28 09:13:53

在看不到代码的情况下很难调试,但是您是否尝试过添加“return false;”在 OnClientClick 中调用 Fancybox 之后?

例如:

OnClientClick="yourFunctionCall(); return false;"

这应该可以防止回发。然后,您可以挂钩 Fancybox 的关闭事件(或其他事件)来执行关闭时需要执行的操作。

Tough to debug without seeing your code, but have you tried adding 'return false;' after your call to Fancybox in OnClientClick?

eg:

OnClientClick="yourFunctionCall(); return false;"

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文