estas seguro de que te lee bien la informacionde del mysql mira desde el codigo fuente esta inea var lista=<?=json_encode($obj);?>; a ver si lo datos te llegan correctamente
otra cosa por que si quieres buscar por en codigo lo por que no lo utilizas como llave
Código PHP:
<?php
include("/conexiones/programa_satbalma.php");
$sql="SELECT *
FROM prueba";
$res=$db->query($sql);
$obj = array();
while($resultado=mysqli_fetch_row($res)) {
$obj["cod_".$resultado[0]]=array( "nom"=>$resultado[1], "pvp"=>$resultado[2]);
}
?>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Documento sin título</title>
<script language="javascript">
var lista=<?=json_encode($obj);?>;
console.log(lista);
function cod(codigo) {
var nom = lista["cod_"+codigo.value];
document.getElementById('nom').innerHTML = ( nom )?nom:'no exsite';
}
</script>
</head>
<body>
<table>
<tr>
<th width="100px">
Codigo
</th>
<th width="100px">
Nombre
</th>
<th width="100px">
PVP
</th>
</tr>
<tr>
<td><input type="text" name="text" id="text" onkeyup="cod(this)"></td>
<td id="nom"></td>
<td id="pvp"></td>
</tr>
</table>
</body>
</html>