我正在尝试使用JQuery基于使用json_encode(array)从外部PHP文件发送的数组来填充文本框。选择的选择框选项确定将哪个选项值发送到外部PHP文件。不幸的是,我的文本框总是空的。我一直在尝试使用Firebug和lint网站进行调试,但我无法弄清楚为什么没有人口。 请忽略此安全部分
主索引页面摘录:
function loadDoc()
{
$('#verb').live('change', function()
{
$.post("loadTextBox.php", {verb_value: $(this).val()},
function(data)
{
$("#textbox").html(data.first);
$("#textbox2").html(data.second);
$("#textbox3").html(data.third);
$("#textbox4").html(data.fourth);
$("#textbox5").html(data.fifth);
$("#textbox6").html(data.sitxh);
},"json");
});
}
外部PHP文件代码:
<?php
header('Content-Type:application/json;charset=utf-8');
$file_absolute = "---placeholder for correct file path---";
include_once($file_absolute);
$mysql = new mysqli($db_host, $db_username, $db_password, $db_name);
$verb_value = $_POST['verb_value'];
$mysql->query("SET CHARACTER SET 'utf8'");
$result = $mysql->query("SELECT present_tense FROM $verb_value");
$queryResult = array();
while ($row = $result->fetch_object())
{
$queryResult[] = $row->present_tense;
}
$textboxValue = $queryResult[0];
$textboxValue2 = $queryResult[1];
$textboxValue3 = $queryResult[2];
$textboxValue4 = $queryResult[3];
$textboxValue5 = $queryResult[4];
$textboxValue6 = $queryResult[5];
$array = array('first'=>$textboxValue,'second'=>
$textboxValue2,'third'=>$textboxValue3,'fourth'=>
$textboxValue4,'fifth'=>$textboxValue5,'sixth'=>
$textboxValue6);
echo json_encode($array);
?>