gpt4 book ai didi

javascript - 如何在 If 条件中使用 xmlhttp.responseText?

转载 作者:行者123 更新时间:2023-11-28 08:46:18 24 4
gpt4 key购买 nike

这是我的 save_custLog_data.php 文件。

<?php
$a = $_GET['custEmail'];
$b = $_GET['pswrd'];
$file = '/home/students/accounts/s2090031/hit3324/www/data/customer.xml';

if(file_exists($file))
{

$xml = new SimpleXMLElement($file, null, true);

foreach($xml->children() as $child)
{

if((($child->EmailAddress) == $email) && (($child->Password) == $password))
{

if(isset($session))
{
$session = (string)$child->CustId;
$_SESSION['cust_id'] = $session;
echo"Welcome";

}
break;

}
else
{
echo"Invalid Email or Password!! Please Enter again";
exit();
}
}

}
else
{
echo"XML file you are trying to access doesn't exist";
}


?>

上面是我的 php 页面。下面你可以看到我的 html 页面。但我只会添加嵌入的 javascript 部分。

<script>
function validate()
{
var email = "";
var pswrd = "";

email = document.getElementById("txtEmail").value;
pswrd = document.getElementById("txtPaswrd").value;


if((email != "") && (pswrd != ""))
{
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)
{
var msg = xmlhttp.responseText;
if(msg == "Welcome")
{
window.location.assign("buying.htm");//this method call doesn't work
}
else
{
alert(msg);
}


}
}

xmlhttp.open("GET","save_custLog_data.php?custEmail="+email+"&pswrd="+pswrd,true);
xmlhttp.send();

}
else
{
alert("Loging form can't be empty");
}

}
</script>

所以我的问题是为什么 window.location.assign("buying.htm") 方法调用不起作用

最佳答案

前面加一个斜杠

window.location.assign('/buying.htm');

关于javascript - 如何在 If 条件中使用 xmlhttp.responseText?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19759320/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com