我正在尝试通过 JQuery 更新多个项目,在跨标签的情况下。我确实设法使用 html dataType 更新了单个项目,但我一直无法找到引用项目数组的正确方法。
问题似乎出在下面的 setData 函数中。我试图将其作为普通数组引用,但这似乎不起作用。
这是jQuery:
<script>
$(document).ready(function () {
$(".hook1").change(function () {
pass_id = (this.value);
var seltop = $(this).attr('id');
var lastchar = seltop.slice(-1);
$.ajax({
type: "POST",
url: "comp_data.php",
dataType: "json",
data: {
passval: pass_id,
pass2: lastchar
},
success: function setData(data) {
$("#price" + lastchar).html(data[0].price);
$("#matricule" + lastchar).html(data[1].matricule);
$("#tag" + lastchar).html(data[2].tag);
$("#ins_yr1" + lastchar).html(data[3].ins_yr1);
$("#Totalacq" + lastchar).html(data[4].Totalacq);
}
});
});
});
</script>
这是 comp_data.php 文件的相关部分:
<?php
$version_id = $_REQUEST['passval'];
$i = $_REQUEST['pass2'];
mysql_query("CREATE OR REPLACE VIEW vcomp AS (SELECT......");
$return = array(
"price" = > "",
"matricule" = > "",
"tag" = > "",
"ins_yr1" = > "",
"Totalacq" = > ""
);
$name = array_keys($return);
$ct = count($name);
$n = 0;
while ($n < $ct) {
$key = $name[$n];
$sql2 = mysql_query("SELECT *
FROM vcomp
ORDER BY segment_id,price
");
while ($row = mysql_fetch_assoc($sql2)) {
$return[$key] = $row[$key];
}
$n++;
}
$returnJSON = json_encode($return);
echo $returnJSON;
$returnJSON 的最后一个回声给出
{"price":"1014000","matricule":"10000","tag":"6000","ins_yr1":"25350","Totalacq":"1055350"}
这就是我想用 setData 函数输出的内容。
我很欣赏任何想法。