我想使用jquery ajax将php变量$thread_id
发送到php文件,因此php文件可以获取$thread_id
的所有帖子并将其回送回主文件。
$.get("ajaxcall_reply.php", thread_id: $thread_id, function(data) {
$("#threads").html(data);
});
我该怎么打字?
答案 0 :(得分:0)
你知道$ thread_id正在输出什么吗?尝试将其放入自己的变量中并在将其放入get函数之前查看输出。它可能有符号或东西搞乱你的javascript语法。你有一个例子输出吗?此外,get方法返回XMLHttpRequest对象(数据),因此您可能需要查看设置要返回到回调函数的数据类型:“xml”,“html”,“script”,“json”,“jsonp”,或“文字”。
答案 1 :(得分:0)
试试这个:
$.get("ajaxcall_reply.php", {thread_id: $thread_id}, function(data) { $("#threads").html(data); });
答案 2 :(得分:0)
<script>
$.get(url, { get_var: '<?php echo $phpvar ?>' }, function(data) { alert(data); });
</script>
在网址:
<?php
echo $_GET['get_var'];
?>