我有以下 javascript 循环,它正确地提醒我需要在 Codeigniter 方法中使用的值。这是js循环:
function myInsert(){
$('input[name=r_maybe].r_box').each(function(){
if( $(this).prop('checked') ){
// need to replace this alert with codeigniter method below
alert ($(this).prop('value'));
}
});
}
我需要以某种方式执行此 Codeigniter 方法,而不是提醒所需的值:
//this would never work because it mixes JS with PHP, but I need a workaround
$this->appeal_model->myMethod($(this).prop('value'), 888, 999);
有没有办法可以在 javascript 循环中运行这个 PHP 代码?我知道 PHP 是服务器端,而 JS 是客户端,但我确信我的问题必须有一个我还不知道的解决方案。谢谢。