我对ajax + php有点陌生。我有一个选择输入,它根据其值填充另一个选择。
这是html:
<tr>
<td><label>Categoría: </label></td>
<td><select id="cmbCategorias" onchange="cmbTareas(document.getElementById('cmbCategorias').value);">
<?php
require_once('dataaccess.php');
$categorias = new legajos();
$categorias->cmbCategorias();
?>
</td>
<td><label>Tarea: </label></td>
<td><div id="divTareas"></div></td>
</tr>
这是我的 javascript 函数:
function cmbTareas(categoria_id) {
document.getElementById("loadingimage").style.display = "block";
document.getElementById("divTareas").innerHTML = "";
xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("divTareas").innerHTML = xmlhttp.responseText;
document.getElementById("loadingimage").style.display = "none";
}
}
xmlhttp.open("GET", "legajos_tareas.php?categoria_id="+categoria_id, true);
xmlhttp.send();
}
legajos_tareas.php
require_once('dataaccess.php');
$categoria_id=$_GET['categoria_id'];
$tareas = new legajos();
$tareas->cmbTareas($categoria_id);
数据访问.php
public function cmbTareas($categoria_id) {
$con = $this->conectarDB();
$query = "CALL SPR_TAREAS(".$categoria_id.")";
$result = $this->con->query($query);
echo '<select id="cmbTareas">';
while ($row = $this->con->fetch($result)) {
echo '<option value="'.$row['ID'].'">'.$row['NOMBRE'].'</option>';
}
echo '</select>';
$this->con->close();
}
它只有第一次才能完美运行。然后,如果我在选择列表中选择另一个项目,则不会发生任何事情。我在 Chrome 中收到此错误:Uncaught TypeError: object is not a function。改变
有任何想法吗?提前致谢。