0

通过使用javascript ajax,我已将值传递给php页面...从数据库中检索并在ajax页面中打印后显示值...它显示在警报页面中...但我需要在ajax页面中显示...。

ajax 编码

<script>
        function optionsAlert()
        {
            alert("call");
            var xmlhttp;
            var qw=document.getElementById('c').value;
            var qw1=document.getElementById('c1').value;
            var qw2=document.getElementById('unit33').value;
            var qw3=document.getElementById('dept').value;
            var qw4=document.getElementById('class').value;
            alert(qw);
            alert(qw1);
            alert(qw2);
            alert(qw3);
            alert(qw4);

            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)
             {
                alert(xmlhttp.responseText);    

                if(xmlhttp.responseText==1){
                alert("name already Exists" );                  
                return false;   
                }        
               else if(xmlhttp.responseText==0)
               {
                alert("name available");
                document.login.submit();    
               }

            }
         }

            var queryString = "?q=" + qw + "&q1=" + qw1 + "&q2=" + qw2 + "&q3=" + qw3 + "&q4=" + qw4;
            xmlhttp.open("get",'ques.php' + queryString,true);
            xmlhttp.send();
        }

页面

<?php 
include('connection.php'); 
if(($_GET['q']!='') && ($_GET['q1']!='') && ($_GET['q2']!='') && ($_GET['q3']!='') && ($_GET['q4']!=''))
{
    $a= mysql_query("select * from unit1 where unit='".$_GET['q']."' and stopic='".$_GET['q1']."' and qtype='".$_GET['q2']."' and dept='".$_GET['q3']."' and class='".$_GET['q4']."'");
    //$a= mysql_query("select * from unit1 where unit='unit1' and stopic='Subtopic1' and qtype='normal questions'");
    if(mysql_num_rows($a)>0)
    {
        while($row=mysql_fetch_array($a))
        {
            $a1=$row['qno'];
            $a2=$row['ques'];
            $a3=$row['ch1'];
            $a4=$row['ch2'];
            $a5=$row['ch3'];
            $a6=$row['ch4'];
            $a7=$row['ans'];
            echo $a1."<br>";echo $a2."<br>";echo $a3."<br>";echo $a4."<br>";echo $a5."<br>";echo $a6."<br>";echo $a7."<br>";
            echo 1;
        }
    }
    else
    {
        echo 0;
    }
}
?>
4

1 回答 1

0

在 ajax 编码下面创建带有 id 的 div 元素

在你的 ajax 方法中

if(xmlhttp.responseText==1){
                document.getElementById("id").innerHTML = "name already Exists";                   
                return false;   
                }        
               else if(xmlhttp.responseText==0)
               {
                document.getElementById("id").innerHTML="name available";
                document.login.submit();    
               }

"id" 你自己的 div id

于 2013-04-06T05:58:51.990 回答