将 Facebox 与 $.ajax 一起使用

发布于 2024-12-02 01:17:13 字数 984 浏览 2 评论 0原文

我在 HighChart 事件中使用了 Facebox 和 $.ajax,但它只运行一次,并且无法运行下一次。我猜当facebox关闭时就会出现问题。有人有此类问题的经验吗?谢谢 :-)

point:{
                            events:{
                                click:function(){
                                    jQuery.facebox({'ajax':this.options.url});
                                    $.ajax({
                                        type: "GET",
                                        url: 'GetHighChart.aspx',
                                        contentType: "application/json; charset=utf-8",
                                        dataType: "html",
                                        success: function (d) {
                                            //alert("Done");
                                            $("#container1").html(d);
                                        }
                                    });       
                                }
                            }
                        }

I used facebox and $.ajax inside HighChart event, but it run only one time and cannot run the next time. I guess the problem happen when facebox is closed. Anybody has an experience with this sort of problem? Thank you :-)

point:{
                            events:{
                                click:function(){
                                    jQuery.facebox({'ajax':this.options.url});
                                    $.ajax({
                                        type: "GET",
                                        url: 'GetHighChart.aspx',
                                        contentType: "application/json; charset=utf-8",
                                        dataType: "html",
                                        success: function (d) {
                                            //alert("Done");
                                            $("#container1").html(d);
                                        }
                                    });       
                                }
                            }
                        }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

z祗昰~ 2024-12-09 01:17:13

我遇到过这个问题。我通过在 Facebox 中调用的 HTML 中再次包含 Facebox 插件来解决这个问题。丑陋的修复,但它有效。

I experienced this problem. I solved it by including the facebox plugin again in the HTML that was being called in the facebox. Ugly fix, but it works.

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