gpt4 book ai didi

javascript:将数据发布到同一页面

转载 作者:行者123 更新时间:2023-11-28 06:19:07 25 4
gpt4 key购买 nike

$(document).ready(function(){
$('#list li').click(function(){
var ID= $(this).attr('id');
$.post("index.php", ID,
function(){
$("#category").html(ID);
}
);
});
});

此代码在 html <div id="category"> 中显示我选择的列表 ID .

问题

有没有办法将该数据直接发布到 PHP 代码并回显它?我需要 php 中的数据,因为我想在查询中使用它。

最佳答案

$.ajax({
type: "POST",
url: 'index.php',
data: { id: ID }, // name of the post variable ($_POST['id'])
success: function(data) {
console.log('successfully posted data! response body: ' + data);
}
});

关于javascript:将数据发布到同一页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35684559/

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