如何将 php 数组回显到 jquery $.each 函数?
这是我到目前为止在 php 中尝试过的...
$index = 0;
while(!feof($file))
{
$singleLine = fgets($file);
$totalLines[$index] = $singleLine;
++$index;
}
echo $totalLines;
这是我在 jquery 中读回它的方式...
$.post("sendFile.php",{fileName: sendFileName}, function(data)
{
$.each(data, function(index, value)
{
alert(value);
});
});
输出给了我 Array...当它应该给我每个数组元素的 Test1、Test2、Test3 时...