0

我只是需要一点帮助。我想在我的索引上显示一条成功消息,但前提是有人来自发送电子邮件的 php 页面。

这就是我所拥有的

<script>
function load()
{
    if (document.referrer == 'http://www.blahblah.com/contact-form-handler.php') {
        $.notify.success('We read you loud and clear; message received. Prepare for reply.', {
            autoClose : 3000
        });
    }
}
</script>
</head>

<body onload="load()">

这有效:

<script>
function load()
{
    $.notify.success('We read you loud and clear; message received. Prepare for reply.', {     autoClose : 3000 });
}
</script>
</head>

<body onload="load()">

所以这个 if 语句显然有问题。有人可以帮帮我吗?

4

1 回答 1

1

使用正则表达式.match()

function load()
{
if (document.referrer.match(/\/contact-form-handler.php/)) {
    $.notify.success('We read you loud and clear; message received. Prepare for reply.', {
        autoClose : 3000
    });
}
}
于 2013-05-16T14:17:20.730 回答