AJAX 模式对话框,如果引用者 ==则触发 onload

发布于 2024-07-27 21:50:09 字数 214 浏览 6 评论 0原文

我正在尝试更改我的index.html,以在我的网站的引用者==时显示模式窗口(例如,如果它们来自Google,则显示一个“欢迎Googler”对话框,其中包含图像)。

我正在使用 FancyBox,但我还没有习惯它。

关于如何编码有什么建议吗? 我是一名 C++ 程序员——Javascript 不是我的强项,所以直接的例子将非常感激。

提前致谢。

I'm trying to change my index.html to show a modal window if the referer to my site == (eg, if they come from Google, show a "Welcome Googler" dialog box with an image inside of it).

I'm using FancyBox, but I'm not married to it.

Any suggestions on how to code it? I'm a C++ programmer -- Javascript isn't my forte, so straight examples would be very much appreciated.

Thanks in advance.

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

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

发布评论

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

评论(1

后eg是否自 2024-08-03 21:50:09

您将需要一些东西:document.referrer 和 jQuery UI。 jQuery UI 使对话框变得非常简单。

您可以从文档页面找到深入的示例,但在大多数情况下,这就是您所需要的将需要:

<script type="javascript/text">
    if (document.referrer.indexOf('google.com') > -1){
        $("#my-dialog").dialog("open");
    }

    // this is the jquery code to set up the dialog box
    $(function() {
            // options would go inside the dialog() function
    $("#dialog").dialog();
});

</script>

需要 HTML:

<div id="my-dialog">
This is where things get displayed
</div>

You're going to need a couple things: document.referrer, and jQuery UI. jQuery UI makes dialog boxes trivially easy.

You can find an in depth example from the documentation page but for the most part, this is what you are going to need:

<script type="javascript/text">
    if (document.referrer.indexOf('google.com') > -1){
        $("#my-dialog").dialog("open");
    }

    // this is the jquery code to set up the dialog box
    $(function() {
            // options would go inside the dialog() function
    $("#dialog").dialog();
});

</script>

Needed HTML:

<div id="my-dialog">
This is where things get displayed
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文