var onSubmit = funct-6ren">
gpt4 book ai didi

javascript - 显示数组中的数据

转载 作者:行者123 更新时间:2023-12-03 09:51:57 25 4
gpt4 key购买 nike

在index.php页面中,我有一个脚本从demo.php中获取数据并将结果显示在div中。

<div class="leftbox">
<?php
echo "<div id='proddisplay'>";
echo "</div>";
?>
</div>

var onSubmit = function(e) {
var txtbox = $('#txt').val();
var hiddenTxt = $('#hidden').val();
$.ajax({
type: 'post',
url: 'demo.php',
data: {
txt: txtbox,
hidden: hiddenTxt
},
cache: false,
success: function(returndata) {
$('#proddisplay').html(returndata);
console.log(returndata);
},
error: function() {
console.error('Failed to process ajax !');
}
});
};

在 demo.php 脚本中我得到结果

print_r($result);

我在div中得到的结果是

Array ( [0] => 1st value [1] => 2nd value [2] => 3rd value [3] => 4th value )

我希望从这个数组中获取单独的数据,以便我可以在index.php页面中的任何位置单独使用每个数据,但我无法这样做。谁能告诉我如何从索引页的数组中获取单个值

附:我可以选择以 result[0] 的形式在演示页面中显示每个索引值的格式,并按索引页面中的方式调用它,但这将我与 css 绑定(bind)在一起。我希望在索引页中使用任何 css,并只调用索引页中的值。

我尝试在索引页中使用结果[0],但它没有显示任何结果我尝试将数组的值分配给变量,然后将这些变量调用到索引页,但也没有显示任何结果

最佳答案

循环遍历数组中的值的最简单方法是使用 foreach

foreach

foreach($result as $value){
print($value);
}

http://php.net/manual/en/control-structures.foreach.php

http://www.w3schools.com/php/php_looping_for.asp

关于javascript - 显示数组中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30861980/

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