PHP 回显 JavaScript

发布于 2024-12-11 21:05:04 字数 1015 浏览 0 评论 0原文

我有一组 PHP 代码,如果用户在文本字段中输入正确的代码,它将在文本字段下方显示一条消息,并出现下一组问题。

但是,我不想在文本字段下方显示消息,而是想知道是否可以在键入正确答案时弹出 jquery 灯箱。

这是我的 PHP 代码,它检测到正确的答案。我将数据存储在数组中:

if (isset($_POST) AND $_POST)
{
    foreach ($_POST as $key => $answer)
    {
        if (preg_match('/task([0-9]+)/i', $key, $matches))
        {
            $i = $matches[1];

            // check answer

            if ($data[$i]['answer'] == strtolower(trim($answer)))
            {
                $i += 1;
                $isCorrect = true;

            }

            $answered = true;
        }
    }
}

这是在文本字段下方显示消息的代码。

<?php echo ($isCorrect)  ? 'That's correct!' : ''; ?>

这是我想要集成的 jQuery lightbox 代码。

<script type="text/javascript">
$().ready(function() {
$("#dialog").jqm();
});
</script>

<div class="jqmWindow" id="dialog">
<a href="#" class="jqmClose">Close</a>
That's correct!
</div>

有人帮忙吗?

I have a set of PHP code where if user key in the correct code in the text field, it will display a message below the text field and the next set of question comes out.

However, instead of displaying a message below the text field, I would like to know whether it is possible to have a jquery lightbox popup upon keying in the correct answer.

Here's my PHP code where it detects the correct answer. I store my data in an array:

if (isset($_POST) AND $_POST)
{
    foreach ($_POST as $key => $answer)
    {
        if (preg_match('/task([0-9]+)/i', $key, $matches))
        {
            $i = $matches[1];

            // check answer

            if ($data[$i]['answer'] == strtolower(trim($answer)))
            {
                $i += 1;
                $isCorrect = true;

            }

            $answered = true;
        }
    }
}

And here's the code where it displays message below the text field.

<?php echo ($isCorrect)  ? 'That's correct!' : ''; ?>

Here's the jQuery lightbox code I want to integrate in.

<script type="text/javascript">
$().ready(function() {
$("#dialog").jqm();
});
</script>

<div class="jqmWindow" id="dialog">
<a href="#" class="jqmClose">Close</a>
That's correct!
</div>

Help, anyone?

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

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

发布评论

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

评论(1

楠木可依 2024-12-18 21:05:04

使用 AJAX 将答案发布到 PHP 脚本。在 Ajax 成功回调中,使用适当的文本触发对话框。完毕!

Use AJAX to POST the answer to your PHP script. In the Ajax success callback, trigger the dialog box with the appropriate text. Done!

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