Jump to content


Photo

Como Incluir Página Em Uma Div


  • Faça o login para participar
13 replies to this topic

#1 dinhografo

dinhografo

    Novato no fórum

  • Usuários
  • 7 posts
  • Sexo:Não informado

Posted 19/08/2008, 08:53

Meu site já está pronto e a estrutura dele está mais ou menos assim:

<html><head>
<title>Amostra</title>
</head><body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="index.php?pag=pagina1">Página 1</a> | <a href="index.php?pag=pagina2">Página 2</a> </td>
</tr>
<tr>
<td>
<?php
$pag = $_GET["pag"];
switch($pag){
case "pagina1":
include "pagina1.php";
break;
case "pagina2":
nclude "pagina2.php";
break;
default:
include "home.php";
break;
}
?>
</td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</body></html>

Como adicionar Ajax para que as páginas (pagina1.php, pagina2.php) sejam carregadas na index.php sem refresh no site e com um loadzinho sem mudar muito a estrutura do site, isso por que eu sou novo nessa área e apesar de já saber bastante de php eu hoje que comecei a estudar javascript, rsrsrs, e aos poucos, tudo o que estou aprendendo estou implementando em meu site.

Em alguns Forus IPB (as versões mais recentes) tem exatamente o que eu preciso, é só clicar no nick do usuário ao lado do tópico para acessar essa página e ver com seus próprios olhos o funcionamento.
No centro da página tem um menu e ao clicar em um link (Tópicos | Posts | Comentários...), aparece uma mensagem de Carragando... e em seguida abre a página solicitada sem refresh no site, a diferença é que eu acho que busca informações em uma base de dados e eu preciso é incluir páginas.


Bom eu não achei nada satisfatório para o meu caso na net então eu resolvi mesmo sem saber nada tentar montar alguma coisa com o que tem aqui, e deu isso:
<!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>
<title>Teste</title>
<script>
function openAjax() {
	var ajax;
	try {
		ajax = new XMLHttpRequest();
	} catch(ee) {
		try {
			ajax = new ActiveXObject("Msxml2.XMLHTTP");
		} catch(e) {
			try {
				ajax = new ActiveXObject("Microsoft.XMLHTTP");
			} catch(E) {
				ajax = false;
			}
		}
	}
	return ajax;
}
window.onload = loadFunctions;
function loadFunctions() {
	ativarLinks();
}

function gE(ID) {
	return document.getElementById(ID);
}


function gEs(tag) {
	return document.getElementsByTagName(tag);
}
function ativarLinks() {
	var menutag = gE('menubv');
	var linksBtn = menutag.getElementsByTagName('a');
	for (var x = 0; x < linksBtn.length; x++) {
		var linkBtn = linksBtn[x];
		var atributoRel = new String(linkBtn.getAttribute('href'));
		linkBtn.onclick = function() {
			var ID = this.getAttribute('href').split('=')[1];
			var verificalink = this.getAttribute('rel');
				if(verificalink == "out"){
					return true;
				}// if verificalink
			var ajax = openAjax();
			var recipiente = gE('conteudo');
			ajax.open('GET', '?page=' + ID, true);
			ajax.onreadystatechange = function() {
				if (ajax.readyState == 1) {
					// Cria o efeito de loading
					loading(true);	
				}// if-ajax.readyState->1
				if (ajax.readyState == 4) {
					if (ajax.status == 200) {
						// Remove o efeito de loading
							recipiente.style.textAlign = 'left';
							loading(false);
							recipiente.innerHTML = ajax.responseText;
					} // if-status->200
				}// if-ajax.readyState->4
		}//linkBtn.onclick
	ajax.send(null);
	return false;
	}// for
} 
}
function loading(opt) {
	if (opt == true) {
		  var refer = gE('conteudo');
		  var referHeight = refer.offsetHeight;
		  refer.style.textAlign = 'left';
		  var img = document.createElement('img');
		  img.setAttribute('src','loading_bar.gif');
		  img.setAttribute('id','loading');
		  //img.setAttribute('width','235');
		  //img.style.marginTop = '5px';
		  if (!document.getElementById('loading')) {
		
		  refer.innerHTML = "";
		  refer.insertBefore(img, refer.firstChild);} 
	} else if (opt == false) {

		var imgLoading = gE('loading');

		if (imgLoading) {
		  imgLoading.parentNode.removeChild(imgLoading);
		}  //imgloading
	  } //elseif
} //loading
</script>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
	<td id="menubv"><a href="?pag=pagina1">Página 1</a> | <a href="?pag=pagina2">Página 2</a></td>
  </tr>
  <tr>
	<td id="conteudo">
<?php 
switch($_GET['pag']){
case "pagina1":
include ("pagina1.php");
break;
case "pagina2":
include ("pagina2.php");
break;
default:
include ("home.php");
}
?>
	</td>
  </tr>
  <tr>
	<td> </td>
  </tr>
</table>
</body>
</html>
É assim, deveria ele pegar os links da TD com id="menubv" e abrir as paginas com um loadzinho dentro da TD com id="conteudo", mas ela não abre a pagina1/2.php dentro da TD com id="conteudo" ela abre a prória página dentro dessa TD, ou seja, a index.php (o loading funcionou perfeitamente) o pior é que com o FF, quantas vesez se clicar no lnk é quantas vesez a página vai abrir dentro da TD conteudo.

Gente por favor uma ajudinha pra um pobre aprendiz, COMO EU FAÇO ISSO FUNCIONAR?????

Achei um código bem enxuto. Código final para quem precisar:
<!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>
<title>Teste</title>
<script type="text/javascript">
var xmlhttp = getXmlHttpRequest(); 


function getXmlHttpRequest() 
{ 
   if (window.XMLHttpRequest) 
   { 
	  return new XMLHttpRequest(); 
   } 
   else if (window.ActiveXObject) 
   { 
	  try 
	  { 
		 return new ActiveXObject("Msxml2.XMLHTTP"); 
	  } 
	  catch (e) 
	  { 
		 try 
		 { 
			return new ActiveXObject("Microsoft.XMLHTTP"); 
		 } 
		 catch (e){} 
	  } 
   } 



} 


function requisicao(_strNomePagina) 
{ 
	  xmlhttp.open("GET", _strNomePagina, true); 
	  xmlhttp.setRequestHeader("Content-Type", "text/html; charset=iso-8859-1"); 
	  xmlhttp.setRequestHeader("Cache-Control", "no-store, no-cache, must-revalidate"); 
	  xmlhttp.setRequestHeader("Cache-Control", "post-check=0, pre-check=0"); 
	  xmlhttp.setRequestHeader("Pragma", "no-cache"); 
	  xmlhttp.onreadystatechange = function() 
	  { 
		 if (xmlhttp.readyState==1) 
		 { 
			document.getElementById("contents").innerHTML =  "<img src='loading_bar.gif' /><br />Carregando...";
		 } 
		 if (xmlhttp.readyState==4) 
		 { 
			if (xmlhttp.status == 200) {
				document.getElementById("contents").innerHTML = xmlhttp.responseText; 
			}
		 } 
	  } 
	  xmlhttp.send(null); 

} 
</script>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
	<td id="menu"> 
	<a href="?pag=pagina1" onclick="requisicao('?pag=pagina1')">Página 1</a> | 
	<a href="?pag=pagina2" onclick="requisicao('?pag=pagina2')">Página 2</a> | 
	<a href="?pag=pagina3" onclick="requisicao('?pag=pagina3')">Página 3</a>
	</td>
  </tr>
  <tr>
	<td id="contents">
	 

	<?php 
	$pag = $_GET["pag"];
	switch($pag){
		case "pagina1":
			include "pagina1.php";
		break;
		case "pagina2":
			include "pagina2.php";
		break;
		case "pagina3":
			include "pagina3.php";
		break;
		default:
			include "home.php";
		break;
	}
	?>
	</td>
  </tr>
  <tr>
	<td> </td>
  </tr>
</table>
</body>
</html>
Testado no IE e FF com javascript habilitado e desabilitado(óbvio que o ajax não funciona para este ultimo) e as páginas abrem beleza dentro da TD com id="conteudo".
Testei também usando ao tabless e tudo filé.

#2 silici0

silici0

    ?

  • Usuários
  • 902 posts
  • Sexo:Masculino
  • Localidade:São Paulo - SP
  • Interesses:PHP, MySQL, XHTML, CSS, AJAX, JavaScript, Objective-C, Python, Games ... #geek

Posted 08/10/2008, 10:26

Primeiramente, não se carrega páginas inteiras com AJAX, por favor da uma procura mais sobre na internet, pois o ajax não existe garantia de tempo e nem de resposta, ele não esta ai para substituir o include, se vc quer substituir o include existe milhões de outras formas em php.

Abraços
Procurando freelancer
***********************************************
Bachelor of Technology in Technology of Information, with great knowledge in Windows operating systems and Unix-Like (BSD, Ubuntu and Slackware), languages (PHP, JavaScript and MySQL), semantic (DHTML, Tableless, Ajax, MVC, OO) and analysis (manages projects based on PMI).
Developer in PHP, JAVA, Python, Objective-c MySQL, DHTML, CSS, JAVASCRIPT, JQUERY, JSON, SMARTY, MDB2, DOCTRINE, CAKEPHP. Linux desktop for work and MacOS. E-commerces, CRM and bussiness strategys
Love-me and be FREE use UniCes-Like .

#3 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 25/09/2017, 19:19

Super Cialis Order Chibro Proscar cheap cialis Cephalexin Alcohol Use
Levitra Bucodispersable Kamagra Wikipedia Amoxicillin Anti buy cialis Comprar Cialis Generico Madrid
Cheapest Canadian Generic Cialis Kamagra Jelly Orale Donne Alli In Stock viagra cialis Propecia Rinon

#4 LarPhozyHah

LarPhozyHah

    Super Veterano

  • Usuários
  • 14515 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 26/09/2017, 06:24

Hydrochlorothiazide Website With Free Shipping cialis buy online Where To Buy Orlistat Online Baclofen Vente En Canada

#5 HaroNism

HaroNism

    Super Veterano

  • Usuários
  • 15385 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 26/09/2017, 20:38

Levitra Precios viagra cialis Buy Viagra No Prescription

#6 Miguceamma

Miguceamma

    MiguPenjisse

  • Usuários
  • 13201 posts

Posted 26/09/2017, 21:51

60 Mg Cialis Canadian Pharmacy Levitra Eiaculazione Precoce Zithromax For Kids cialis Cialis Original De La India

#7 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 09/10/2017, 11:30

Baclofene Temoignage viagra Commande Cialis Pharmacie

#8 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 05/11/2017, 20:50

Worldwide Macrobid Medicine Overnight Shipping Cheap Baclofene Alcool Canada viagra Comprar Cialis En La Farmacia Sin Receta
Discount How To Buy Progesterone 100mg Cod Only Visa Accepted kanada levitra bestellen Priligy Tabletas 30 Mg
Precio Comprar Propecia Finasteride Generico Viagra Pills 100 Mg Walmart cialis Colitis Amoxicillin Why Can'T You Crush Amoxicillin Whexenical No Prior Prescritption
Viagra Vente Libre Andorre cialis online Treating Rabbits With Amoxicillin

#9 aapedlok

aapedlok

    24 Horas

  • Usuários
  • 450 posts
  • Sexo:Masculino
  • Localidade:Alpharetta

Posted 06/11/2017, 05:05

Discounts! must have 2017 progect12.jpg Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked! If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included). buy.png READ MORE Lomeou high quality makeup brows automatic eyebrow pencil with eye brows brush waterproof long lasting ( 2.76 $)Optical Print Silk Ascot ( 49.00 $)New 11 colors women triangle halter bikini set sexy brazilian t-back thongs adjustable shoulder straps swimsuit maillot de bain ( 20.56 $)Yaponskij magazin. (Video)ideaBee Hot Envelope Women Wallet Color 3Fold Flowers Printing 5Colors PU Leather Wallet Long Ladies Clutch Coin Purse Womenbag ( 6.56 $)скачать counter globalBest sale virgin brazilian glueless full lace wigs with baby hair full lace human hair wigs 150 density body wave lace front wig ( 140.13 $)Blue Square - Slim Leather Messenger Bag ( 174.00 $)Chic leopard pattern women's winter beret ( 6.04 $)8a brazilian virgin hair body wave 3 bundles mink brazilian hair 100% human hair bodywave weave brazilian hair bundles body wave ( 45.20 $)Original Xiaomi Mi5 Pro Prime smartphone In Stock Mi 5 Snapdragon 820 3000mAh Dual SIM Card 4K Video Mobile Phones ( 269.99 $)OUKITEL K10000 4G Phablet-149.89 $24K Carat Gold Foil Plated Poker Game Playing Cards Gift Collection +Certificate ( 9.00 $)Antiskid Waterproff Reusable Raincoat Set Rain Shoe Boots Cover Overshoes Outdoor Travel Rain Coat Shoes Cover Long Style ( 4.01 $)шоп 24 интернет магазин официальный сайт юбки 104bb.png
Discounts! top 10 makeup brands

progect12.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
Route H217 Beige Suede Lace Up Derby Shoe ( 136.00 $)
Electric water bottle pump dispenser with rechargeable battery drinking water bottles suction unit water dispenser kitchen tools ( 19.50 $)
Anita
Bostanten man vertical genuine leather bag men messenger business men's briefcase designer handbags high quality shoulder bags ( 70.99 $)
Edesh takoj nochyu, i vdrug na tebya iz-za povorota memasiki idut) (Video)
All star high concrete smoke leather ltd unisex shoes ( 101.10 $) Converse Limited Edition
Trendy v neck short sleeve colorful print dress for women ( 25.74 $)
Fashion Totoro Bag Men Messenger Bags Canvas Shoulder Bag Lovely Cartoon Anime Neighbor Male Crossbody School Letter Bag ( 19.99 $)
X-Travel Pilot Case ( 194.00 $)
ZTE Axon Elite 4G International Edition Phablet ( 184.99 $)
Ysecu 7 inch tft lcd monitor color video recorder door phone door bell intercom system 800tvl ir door camera access control ( 133.76 $)
Adjustable Manual Nailer Kit for Wall Framing Roof Decking-139.34 $
развертки направляющих втулок клапанов ваз купить
«Stoyu na samoj visokoj dyune…»
шкив коленвала змз 409 купить


14bb.png
Discounts! best us products

progect12.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
Trendy bat sleeve jewel neck pure color t-shirt for women ( 9.48 $)
Long big wavy pony tail clip in pony tail hair extension claw on hair piece 18 ( 2.99 $)
7A Brazilian Virgin Hair Body Wave 4 Bundles Brazilian Body Wave Unprocessed Brazilian Hair Weave Bundles Human Hair Weave ( 49.00 $)
5 inch ips mirror camera android gps navigation dual camera video recorder gps dash cam vehicles rear-view camera car dvr ( 128.45 $)
Mens Gray Croco Stamped Patent Leather Belt ( 92.00 $)
Lenovo ZUK Z1 International Edition 4G Phablet ( 173.19 $)
counter strike 1.6 зомби сервер free
MacKeeper
Al-Kaida
A118C - B40C 1080P FHD 170 Degree Wide Angle Car DVR ( 37.99 $)
ниссан чебоксары официальный дилер
new brand women bag women shoulder bags vintage European PU leather women handbag new fashion casual solid messenger bag,LB2577 ( 19.94 $)
шоппинг лайф первый немецкий интернет телемагазин скидки
Cashback service LetyShops â LetyShops
Black Neoprene Slip On Womens Skaters ( 122.00 $)


44bb.jpg
Discounts! makeup 2017 products

progect12.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
Lenovo A5600 4G Phablet-116.64 $
Kak zelena bila moya dolina
105W Moving Head RGB LED Stage Light-85.21 $
Nikto (Igra prestolov)
шкив купить
Color block splicing flocking stand collar long sleeve men's cotton-padded coat ( 48.93 $)
Faux Patent Leather Handbag ( 185.00 $)
шоп 24 телемагазин официальный сайт распродажа
2016 new a+++ league soccer ball league football anti-slip granules ball tpu size 5 football balls ( 21.00 $)
plants vs zombies free скачать бесплатно
Sisjuly solid color hooded jacket long sleeve women's hoodies sweatshirts black zipper autumn winter outerwear coats fashion ( 34.99 $)
New fashion women wallet long designer leather coin purses female clutch credit card holders solid candy color hasp wallet girls ( 13.75 $)
Cobbler legend brand designer 2016 women's genuine leather vintage single shoulder bag women crossbody bags handbags for ladies# ( 79.00 $)
Im Queen Hair Brazilian Body Wave 4Bundles Brazilian Virgin Hair Body Wave,7A Mink Brazilian Human Hair Weave Bundles No Tangle ( 43.34 $)
Deported mother leaves behind family in US


47.jpg
Discounts! best reviews

progect12.jpg
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

buy.png

READ MORE
Jabbah 872S Leopard Print Acetate Cat Eye Womens Sunglasses ( 180.00 $)
7A Brazilian Virgin Hair Body Wave 3bundles with1pcs Lace Closure Mink Brazilian Hair 100% Human Hair Brizilian Ali moda hair ( 105.00 $)
FIEDORA A-Ding Smart RC Bluetooth Selfie Dock-66.27 $
Leebote 1m 2m 3m USB Type C cable USB C Charger Cable for Huawei p9 OnePlus 2 ZUK Z1 Z2 NEXUS 5X 6P USB-C Fast Charging Cable ( 2.60 $)
Kinglux 8 x 32 Roof BK - 7 Prism Green Laser Binoculars-92.24 $
Ac100~240v 9 inch color tft lcd video door phone doorbell handfree intercom kit monitor +camera with night vision ng4s ( 102.34 $)
2015 new guitars 40-1 40 inch high quality electric acoustic guitar rosewood fingerboard guitarra with guitar strings ( 137.75 $)
Zolotaya korona (Igra prestolov)
Hot fashion style bags famous cute design women messenger bag moon luna vega sailor moon bag handbags cat shoulder bags bs550 ( 53.98 $)
Fango Suede Mule ( 145.00 $)
Chic plus size flounced jasmine flower print women's dress ( 23.43 $)
EP0030 015 Black Oversized Round Sunglasses ( 180.00 $)
Wltoys K999 128 2.4G 4WD Full Proportional Electric 2.4G Remote Control Short Truck-58.20 $
Bts bangtan boys harajuku sweatshirts women winter casual hoodies bts kpop hoodie women's pink sweatshirt plus size xxxxl ( 30.27 $)
New wireless pir home security burglar alarm system auto dialing dialer easy diy ( 100.59 $)


118bb.jpg

#10 Miguceamma

Miguceamma

    MiguPenjisse

  • Usuários
  • 13201 posts

Posted 06/11/2017, 10:13

Pharmacie Qui Vendent Deux Viagra Et De Dapoxetine Kamagra Es De Venta Libre buy viagra No Rx Robaxin
Generic Finasteride Drugs What Is Amoxicillin Used Can You Order Viagra From Canada generic levitra on line Buy Tamoxifen Europe Generique Baclofen

#11 HaroNism

HaroNism

    Super Veterano

  • Usuários
  • 15385 posts
  • Sexo:Masculino
  • Localidade:San Miguel de Tucuman

Posted 07/11/2017, 10:14

Cheap Brand Viagra Online best price on levitra Aquista Cialis Amoxicillin Dosage For An Adult

#12 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 08/11/2017, 23:57

Propecia Compare Prices viagra Cephalexin Dosage For Urinary Cialis Per Ansia Da Prestazione
Pyrantel Pamoate Interactions With Amoxicillin Cephalexin Dose For Children india 4 pharmacy levitra cheap Cheap Generic Levitra Vardenafil Cialis Ubers Internet
Code For Amoxicillin Below Skin Swelling Amoxicillin Allergy Treatment Viagra 100mg 30 levitra prices 20 gm free delivery Propecia Impacto
Zithromax Uk Buy Buying Amoxicilina No Physician Approval Free Shipping Shop cialis Can i purchase isotretinoin 10mg website cheap

#13 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 28/11/2017, 22:02

Prezzi Cialis Viagra Suhagra Cipla Dangers levitra Priligy Deutschland Kaufen Purchase Zithromax For Chlamydia Cialis Et Forum
Il Cialis Fa Male Al Cuore Cytoxan In Usa Online Ed Meds viagra Sildenafil Generique 20 Mg Viagra Online Malaysia Lioresal Prix
Propecia Kaufen Supreme Suppliers Viagra generic cialis Is Cephalexin Used For Bladder Infections Levitra Erfahrungsaustausch Cephalexin Mouth

#14 JeffMalm

JeffMalm

    Super Veterano

  • Usuários
  • 12254 posts
  • Sexo:Feminino
  • Localidade:Mount Carey

Posted 10/02/2023, 14:57

3 Nonsteroidal Anti inflammatory Drugs levitra cialis viagra
95 QALYs, ANA in 12 generic finasteride international
it is progressively converted to a form devoted to degradation after it has accomplished its physiological role stromectol etos Evaluation should include serum electrolytes and ketones, blood glucose, and, if indicated, blood pH, lactate, pyruvate, and metformin levels
Food poisoning usually strikes six to twelve hours after eating contaminated food, and will last for about just as long where can i buy cialis on line This can be illustrated by the in vitro studies of Kochukov et al




1 user(s) are reading this topic

0 membro(s), 1 visitante(s) e 0 membros anônimo(s)

IPB Skin By Virteq