我对我的 jquery 函数的成功有疑问。
这是js中的脚本
$.ajax({
type: "POST",
url: "filtra.php",
dataType: 'json',
data: "livello:"+ liv+"&materia:"+mat,
success: function (data) {
for ( var x = 0; x < data.length; x++ ) {
content = data[x].ID;
alert(content);
}
}
});
这是php页面。
<?php
if (isset($_POST['livello']) && isset($_POST['materia']) && isset($_POST['keyword'])) {
$liv=$_POST['livello'];
$mat=$_POST['materia'];
$keyw=$_POST['keyword'];
$dsn = "mysql:host=localhost;dbname=db";
$username = "root";
$password = "";
$rows=array();
try{
$pdo = new PDO($dsn, $username,'');}
catch(PDOException $e) {
echo 'Attenzione: '.$e->getMessage();}
$str="SELECT * FROM quesito";
if($liv!="Tutte"){$str.=" WHERE '$liv'=Livello ";}
if($mat!="Tutte" && $liv!="Tutte"){$str.="AND '$mat'=Materia ";}
else if($mat!="Tutte" && $liv=="Tutte") {$str.=" WHERE'$mat'=Materia ";}
$sql = $pdo->prepare($str);
$sql->execute();
$res = $sql->fetchAll();
echo json_encode($res);
}
?>
没有任何回报..感谢您的回复。