我在項目中使用WAMP,並遇到一些困難。基本上,我想單擊一個表單提交按鈕,它調用一個函數,它在php中請求一些數據。 。 我的功能javascript&php沒有將合適的值返回到DIV
/**********************************************************************************/
//USER LOG IN
$('#cSignIn').click(function(){
//Get User name and password
var uname = $('#uName').val();
var pword = $('#pWord').val();
loginRequest(uname, pword);
$('.formList').hide();
$('#information').show();
return false;
});
//LOGIN REQUEST
function loginRequest(uName, pWord){
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){
document.getElementById("rText").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","login.php?Username=" + uName +"&Password=" + pWord ,true);
xmlhttp.send();
return false;
}
當我嘗試返回rText(我的div)使用$( '#rText')的值VAL(); OR $('#rText')。text();這不是我期待的那樣。 PHP代碼回聲一個數,login.php中的代碼是如下
<?php
$con = mysql_connect("localhost:3306","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("Library", $con);
$username=$_GET["Username"];
$password=$_GET["Password"];
$result = mysql_query("SELECT * FROM Customers");
$success = 0;
while($row = mysql_fetch_array($result))
{
if($username==$row['Username'])
if($password==$row['Password'])
if($row['Admin'] == true)
{
$success = 1;
}
else
{
$success = $row['Id'];
}
}
echo $success;
mysql_close($con);
?>
再者,我在任一所涉及的功能檢查rText的值時,不預期值。但是,當我退出該函數時,該值是有效的。
從函數loginRequest返回後,如何才能在rText中擁有正確的值?
僅僅指剛好奇,你爲什麼不使用jQuery AJAX方法,使Ajax調用 –
這是什麼'你說的文字? – Madbreaks
不使用ajax,因爲我不熟悉它,我看到$ .ajax調用,這真的很好。主要只是好奇這個例子中出了什麼問題。 rText是一個DIV,據我所知,它保存了我的login.php的返回值 –