Autor
|
Tema: [AYUDA] javascript Variable = PHP echo (Leído 2,117 veces)
|
Miseryk
Desconectado
Mensajes: 225
SI.NU.SA U.GU.DE (2NE1 - D-Unit)
|
Hola, mi problema es el siguiente, tengo un archivo HTML, que dentro tengo programación en javascript, y estoy queriendo hacer ésto: <Script> var VARIABLE = Llamada a php PEPE.PHP; alert(VARIABLE); </Script>
PEPE.PHP -> echo "1000";
La llamada a php la hice con JQuery y Ajax, pero no funcionó, alguno tiene alguna idea?
|
|
|
En línea
|
Can you see it? The worst is over The monsters in my head are scared of love Fallen people listen up! It’s never too late to change our luck So, don’t let them steal your light Don’t let them break your stride There is light on the other side And you’ll see all the raindrops falling behind Make it out tonight it’s a revolution
CL!!!
|
|
|
|
henkel
Desconectado
Mensajes: 17
happy hacking
|
Este código es de http://www.w3schools.com/ajax/ajax_xmlhttprequest_create.asp<!DOCTYPE html>
function loadXMLDoc() { var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest();//la instancia al objeto de jquery } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("myDiv").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","ajax_info.txt",true);//get: tipo de envio http , "ajax_in..." nombre archivo, true indica que el envio es asincronico xmlhttp.send(); }
<div id="myDiv"><h2>Let AJAX change this text </h2></div> <button type="button" onclick="loadXMLDoc()">Change Content </button>
|
|
« Última modificación: 3 Septiembre 2013, 05:38 am por henkel »
|
En línea
|
Henkel007
|
|
|
EFEX
Desconectado
Mensajes: 1.171
"Dinero Facil"
|
function loadXMLDoc() { var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState == 4 && (xmlhttp.status == 200 || xmlhttp.status == 0 && xmlhttp.responseText)) { document.getElementById("myDiv").innerHTML=xmlhttp.responseText; } else { document.getElementById("myDiv").innerHTML = '<b>Error. HTTP ' + xmlhttp.status + '</b>' } } xmlhttp.open("GET","ajax_info.txt",true); xmlhttp.send(); }
Prueba este codigo, en firefox me funciono.
|
|
|
En línea
|
|
|
|
Miseryk
Desconectado
Mensajes: 225
SI.NU.SA U.GU.DE (2NE1 - D-Unit)
|
El problema no es la llamada, el código que encontré fue: <Script> var VARIABLE; jQuery.ajax( { type: 'post', url: 'PEPE.PHP', dataType: 'html', success:function(data) { VARIABLE = data; } }); alert(VARIABLE); </Script>
PEPE.PHP echo "1000";
|
|
|
En línea
|
Can you see it? The worst is over The monsters in my head are scared of love Fallen people listen up! It’s never too late to change our luck So, don’t let them steal your light Don’t let them break your stride There is light on the other side And you’ll see all the raindrops falling behind Make it out tonight it’s a revolution
CL!!!
|
|
|
|
Mensajes similares |
|
Asunto |
Iniciado por |
Respuestas |
Vistas |
Último mensaje |
|
|
Duda con echo "<img .... y javascript
PHP
|
thecirujano
|
4
|
3,365
|
31 Diciembre 2009, 13:07 pm
por thecirujano
|
|
|
Dos tipos de comillas en sentencia echo y funcion javascript
PHP
|
mokoMonster
|
2
|
3,203
|
8 Diciembre 2011, 16:57 pm
por WHK
|
|
|
pasar variable javascript a php
PHP
|
soru13
|
1
|
3,239
|
12 Abril 2012, 18:43 pm
por Shell Root
|
|
|
como meto un echo en una variable
PHP
|
General Dmitry Vergadoski
|
2
|
1,757
|
13 Febrero 2014, 21:10 pm
por el_junior
|
|
|
[Resuelto] Ayuda while y echo en PHP
Desarrollo Web
|
KiddKeo
|
1
|
1,940
|
19 Mayo 2018, 14:48 pm
por ivancea96
|
|