gpt4 book ai didi

php - AJAX 帖子 : echoing posted anchor tag value

转载 作者:行者123 更新时间:2023-12-01 06:23:12 25 4
gpt4 key购买 nike

HTML/jQuery:

<a href=# id="friends">Friends</a>
<script type="text/javascript">
$(document).ready(function() {
$('a#friends').click(function() {
$.ajax({
type: "POST",
url: "data.php",
data: $('#friends').html(),
success: function(data) {
$('#questions').html(data);
},
dataType: "HTML"
});
});
});
</script>

数据.php:

<?php
echo $_POST['#friends'];
?>

如何在 anchor 标记中返回 id 的 POST 值?该变量正在传递给 PHP,因为我可以向它发出警报,但问题是如何取回它。

最佳答案

您需要指定在 AJAX 请求中发送的值的名称。试试这个:

$.ajax({
type: "POST",
url: "data.php",
data: { 'friends': $('#friends').html() }, // Note the value is sent in an object with a key of 'friends'
success: function(data) {
$('#questions').html(data);
},
dataType: "HTML"
});
<?php
echo $_POST['friends']; // retrieve the 'friends' value
?>

关于php - AJAX 帖子 : echoing posted anchor tag value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13971478/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com