Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Enviar query String


shelter

Question

Boa galera,

Então tenho uma missão que estou quase louko e não resolvo,

Tenho uma pagina principal que preciso passar o valor de uma variavel para uma pagina php e receber a resposta em uma div pop, segue o exemplo abaixo , quem puder me ajudar.

O pop já esta funcionando , mais não passa o valor para a pagina recebe, grato.

<!DOCTYPE html>
<html lang="pt-br">

<head>
  <title>Exibindo pop-up na página HTML</title>

  <style type="text/css">
  #popup{
  position: fixed;
  top: 20%;
  left: 50%;
  margin: -75px 0 0 -150px;
  width: 300px;
  height: 300px;
  padding: 20px;
  border: solid 1px #331;
  background: #ffffd0;
  display: none;
  }
  </style>

  <script type="text/javascript">
   var req;
   function fechar(){
     document.getElementById('popup').style.display = 'none';
   }

   function abrir(valor){
   // Verificando Browser
if(window.XMLHttpRequest) {
   req = new XMLHttpRequest();
}
else if(window.ActiveXObject) {
   req = new ActiveXObject("Microsoft.XMLHTTP");
}
   
    var url = "recebe.php?valor="+valor;
	req.open("Get", url, true);
     document.getElementById('popup').style.display = 'block';
     setTimeout ("fechar()", 30000);
   req.send(null);
   }

  </script>

</head>

<body>

   <DIV id="popup"> 
     <p>Conteúdo do pop-up aqui.</p>
     <?php include ('recebe.php') ?>
     <p><small class="fechar"><a href="javascript: fechar();">Fechar pop-up</a></small></p>
   </DIV>

   <p align="center"><a href="javascript: abrir('valor','$arroz');">Abrir POPUP</a>
      <a href="javascript: fechar();">Fechar POPUP</a></p>

</body>

</html>
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Tenta assim:

var req = null;
function fechar() {
	document.getElementById('popup').style.display = 'none';
}
function abrir(valor) {
	// Verificando Browser
	alert("abrir():" + valor);
	if (window.XMLHttpRequest) {
		req = new XMLHttpRequest();
	} else if (window.ActiveXObject) {
		req = new ActiveXObject("Microsoft.XMLHTTP");
	}
	var url = "recebe.php?valor=" + valor;
	req.open("GET", url, false);
	req.send(null);
	if (req.readyState == 4 && req.status == 200) {
		document.getElementById("conteudo").innerHTML = req.responseText;
	}
	document.getElementById('popup').style.display = 'block';
	setTimeout(function() { fechar(); }, 30000);
}

Alterações no body:

<body>
	<DIV id="popup">
		<p id="conteudo">Conteúdo do pop-up aqui.
			<?php include ('recebe.php') ?>
		</p>
		
		<p>
			<small class="fechar"><a href="javascript: fechar();">Fechar pop-up</a></small>
		</p>
	</DIV>
	<p align="center">
		<a href="#" onclick="abrir('<?php echo $arroz; ?>');">Abrir POPUP</a>
		<a href="#" onclick="fechar();">Fechar POPUP</a>
	</p>
</body>
Edited by wootzor
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...