Ajax 获取数据不起作用

发布于 2024-11-28 11:07:54 字数 766 浏览 1 评论 0原文

我有这个 Jquery Javascript 代码:

$(document).ready(function(){
    $("#check_button").click(function(){
        $.ajax({
            url: "includes/adcontent.php",
            type: "GET",
            data: "id=<?php echo $id; ?>",
            async: false,
            cache: false,
            beforeSend: function (data) {
                    $('#check_quest_button_div').html("<img src='/images/icons/loading.gif' title='Please wait' alt='Please wait' />");
            }
        });
    });
});

这是我在includes/adcontent.php 中的PHP 代码:

if (!isset($id) && isset($_GET['id'])){
    $id=htmlspecialchars(strip_tags($_GET['id']));
}
echo $id;

但是使用这个代码我有一条错误消息。该脚本不发送 GET 数据。问题是什么?

I have this Jquery Javascript code:

$(document).ready(function(){
    $("#check_button").click(function(){
        $.ajax({
            url: "includes/adcontent.php",
            type: "GET",
            data: "id=<?php echo $id; ?>",
            async: false,
            cache: false,
            beforeSend: function (data) {
                    $('#check_quest_button_div').html("<img src='/images/icons/loading.gif' title='Please wait' alt='Please wait' />");
            }
        });
    });
});

And this is my PHP code in includes/adcontent.php:

if (!isset($id) && isset($_GET['id'])){
    $id=htmlspecialchars(strip_tags($_GET['id']));
}
echo $id;

But with this code I have an error message. The script doesnt send the GET data. What is the problem?

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

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

发布评论

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

评论(2

烟─花易冷 2024-12-05 11:07:54

您是否尝试过以下操作:

$.ajax({
    url: "includes/adcontent.php?id=<?php echo $id; ?>",
    type: "GET",
    async: false,
    cache: false,
    beforeSend: function (data) {
        $('#check_quest_button_div').html("<img src='/images/icons/loading.gif' title='Please wait' alt='Please wait' />");
    },
    success: function (data) {
        alert(data);
    }
});

您看到警报了吗?

Have you tried this:

$.ajax({
    url: "includes/adcontent.php?id=<?php echo $id; ?>",
    type: "GET",
    async: false,
    cache: false,
    beforeSend: function (data) {
        $('#check_quest_button_div').html("<img src='/images/icons/loading.gif' title='Please wait' alt='Please wait' />");
    },
    success: function (data) {
        alert(data);
    }
});

Do you see the alert?

ゞ记忆︶ㄣ 2024-12-05 11:07:54

试试这个

$(document).ready(function(){
    $("#check_button").click(function(){
        $.ajax({
            url: "includes/adcontent.php?id=<?php echo $id; ?>",
            type: "GET",
            async: false,
            cache: false,
            beforeSend: function (data) {
                    $('#check_quest_button_div').html("<img src='/images/icons/loading.gif' title='Please wait' alt='Please wait' />");
            }
        });
    });
});

Try this

$(document).ready(function(){
    $("#check_button").click(function(){
        $.ajax({
            url: "includes/adcontent.php?id=<?php echo $id; ?>",
            type: "GET",
            async: false,
            cache: false,
            beforeSend: function (data) {
                    $('#check_quest_button_div').html("<img src='/images/icons/loading.gif' title='Please wait' alt='Please wait' />");
            }
        });
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文