gpt4 book ai didi

javascript - 如何通过 ajax 使用 url 段来提醒变量?

转载 作者:行者123 更新时间:2023-12-03 05:38:21 25 4
gpt4 key购买 nike

我正在使用 HVC codeigniter。我想提醒变量的值。

这是我认为的代码。

$("#user_table tr").click(function(){    
$userid = $(this).closest('tr').children('td:first').text();
$.ajax ({
type: "POST",
url: "manageUser_controller/log_history/$userid",
success: function(data){
alert(data);
}
});

});

这是我的 Controller 上的代码。

function log_history($userid) {
echo $userid;
}

最佳答案

您需要按如下方式编辑代码

var userid = $(this).closest('tr').children('td:first').text();

url: "manageUser_controller/log_history/'+userid,

关于javascript - 如何通过 ajax 使用 url 段来提醒变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40650733/

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