我在将一个变量 (i) 发送到我的 php.ini 时遇到问题。我的变量 i 每次都是 6,我该如何解决?
$(document).ready(function(){
for (i=1; i<=5; i++){
$('#rate'+ i +'_').click(function(){
sendValue($(this).val(),i);
});
}
});
function sendValue(str,str2){
$.post("/php/test.php",{ sendValue: str, sendValue2 : str2 },
function(data){
$('#display').html(data.returnValue);
}, "json");
}