Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/02/2010, 23:00
italo20
 
Fecha de Ingreso: octubre-2009
Mensajes: 9
Antigüedad: 15 años, 1 mes
Puntos: 0
ajax.updater no ejecuta js y php

hola amigos

no puedo salir de este problema, ya busque por los foros pero no encuentro solucion, haber si me dan una mano

es colocar el archivo segundo.php en un DIV, si lo muestra en la DIV pero no EJECUTA el JAVASCRIPT y el CODIGO PHP.

aqui pongo los codigos:

INDEX.HTML---------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<script type="text/javascript" src="ajax/prototype-1.6.0.3.js"></script>
<script type="text/javascript">

function cargarDiv(){
new Ajax.Updater($('dos'),'segundo.php',
{method: 'get',asynchronous:true,evalScripts: true} );
}
</script>
</head>
<body>
<div id="uno" style="width:30%; float:left; height:300px">
<input name="ver" type="button" value="ver" onclick="cargarDiv();" />
</div>
<div id="dos" style="width:70%; float:left; height:300px">
</div>
</body>
</html>
---------------------------------------------------------------
EL OTRO ARCHIVO
SEGUNDO.PHP------------
<?php
if (isset($_POST['texto']))
{ echo "<h1> ok php </h1>"; }
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<script language="javascript">
function poner()
{ document.getElementById('texto').value="ok"; }
</script>
</head>

<body>
ejemplo01
<form action="" method="post">
<input name="texto" id="texto" type="text" />
<input name="js" type="button" value="js" onclick="poner();" />
<input name="submit" type="submit" value="submit" />

</form>
</body>
</html>