2015-04-21 74 views
0

所以我有了這個代碼.load工作不正常

<html> 
<head> 
    <script src="https://code.jquery.com/jquery-1.10.2.js"></script> 
    <script src="https://maps.googleapis.com/maps/api/js"></script> 
    <script> 
    function carregaPagina($link) 
      { 
      $("#destaques").load($link); 
      } 

     $(document).ready(function() { 
      var rdoIndex = 0;  
      /* Every 2 seconds, click each radio button */ 
      var rollDemRadios = setInterval(function() { 
      var rdoCount = $('input[name="controls"]').length; 
      $('input[name="controls"]:eq(' + rdoIndex%rdoCount + ')').click(); 
      rdoIndex++;   
      }, 5000); 

/* Stops the radio buttons from rolling */ 
$('#stopBtn').click(function() { 
    clearInterval(rollDemRadios); 
}); 
}); 
    </script> 
</head> 
<?php 
$id=$_GET['id']; 
include('conexaoBD.php'); 
//ação sobre a tabela 
$pergunta="SELECT * FROM noticias LIMIT ".$id.", 2;"; 
$resposta= mysqli_query($ligaBD, $pergunta); 
if (!$resposta) 
    { 
    echo "<br> Erro: Acesso negado da ação sobre a tabela"; 
    exit; 
    } 
// nº de registos devolvidos na ação sobre a tabela 
$num_linhas=mysqli_num_rows($resposta); 
if (!$num_linhas) 
    { 
    echo "<br> Erro: Nº de linhas não obtido."; 
    exit; 
    } 
for($i=0; $i<$num_linhas; $i++) 
          { 
          $dados=mysqli_fetch_array($resposta); //leitura de um registo devolvido. 
          $dataOriginal = $dados['data']; 
          $novaData = date("d-m-Y", strtotime($dataOriginal)); 
          if (!$dados) 
           { 
           echo "<br> Erro: Leitura dos registos devolvidos da ação sobre a BD"; 
           exit; 
           } 
          echo "<div class='titulo'>".mb_convert_encoding($dados['titulo'], "utf-8")."</h1></div>"; 
          echo "<div class='foto'><img src='Imagens/Noticias/".$dados['foto']."'width='400px' height='200px'></img></div>"; 
          echo "<div class='noticia'>".mb_convert_encoding($dados['desc'], "utf-8")."</div>"; 
          echo "<div class='datanoticia'>".$novaData."</div>"; 
          } 
         echo "<a href='#' onClick='carregaPagina('proximapagina.php?id=".$dados['ID']."');'>Próxima Página</a>"; 
?> 

一切工作就好了。我的問題是,當我點擊這個生成的鏈接:

echo "<a href='#' onClick='carregaPagina('proximapagina.php?id=".$dados['ID']."');'>Próxima Página</a>"; 

它並不像預期的那樣,這就好比是工作在網站上,只要你點擊菜單項,在這裏:www.cdq .PT

+0

你有錯誤報告開啓你的PHP代碼? – Maximus2012

+0

當提問'jQuery'問題時,提供輸出HTML(例如從瀏覽器保存)非常有用。這節省了精心編譯PHP的東西,可以用來模擬代碼:) –

+1

你必須檢查你的Web瀏覽器的控制檯輸出,以知道究竟是什麼產生的錯誤。 – SaidbakR

回答

0

在這種情況下,你要發送PARAMS所以試試這個:

onClick='carregaPaginaWithIdParam('proximapagina.php,".$dados['ID']."');' 

///add this function including the id 

function carregaPaginaWithIdParam($link,$ID) 
      { 
       $("#destaques").load($link, {'id': $ID}); 
      }