Ajax 获取数据不起作用
我有这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过以下操作:
您看到警报了吗?
Have you tried this:
Do you see the alert?
试试这个
Try this