错误:无法读取未定义的属性'each'

时间:2016-03-31 19:30:14

标签: javascript php

我有一个JavaScript代码,它返回PHP的值并组装一个HTML表。给出错误无法读取每个undefined的属性。我看了好几次都没有成功。他们可以帮我个忙吗? 以下代码:

JavaScript的:

function getListaItems(idprojeto) {
  //alert(idprojeto);
	jQuery.ajax({
		type: "POST",
		url: "get-lista-items.php?idprojeto=" + idprojeto,
		//data: dataEvento,
		dataType: 'json',
		success: function(resposta) {
			var str_html = '';
			$.each(resposta, function(){
				str_html = str_html + '<tr class="gradeA" id="' + this.id + '">' +
        '<td class="center"><input type="checkbox"  id="item[]" name="item[]" onchange="changeColor(' + this.id + ')" value="' + this.id + '" /></td>' +
        '<td class="center">' + this.descricao + '</td>' +
        '<td class="center">' + this.descCategoria + '</td>' +
        '<td class="center">' + this.descCaracteristica + '</td>' +
        '<td class="center">' + this.descMedida + '</td>' +
        '<td class="center"><input type="text" id="qtd' + this.id + '" style="width:80px"/></td>' +
        '</tr>';
			});

			document.getElementById("resultJs").innerHTML = str_html;
		}
	});
}

PHP:

<?php

	session_start();
	require_once("ProjectIncludes.php");

	$service = new ProjetoxItensService();
	$consulta = $service->getAll($_GET['idprojeto']);

	$retorno = json_encode($consulta);
	echo $retorno;

?>

谢谢,伙计们。

1 个答案:

答案 0 :(得分:1)

看起来使用$无法使用jQuery,请尝试使用jQuery

更改此行:

$.each(resposta, function(){ 

到此:

jQuery.each(resposta, function(){