本文介绍了php标头可以在javascript中工作吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在javascript中使用了php标头,但无法正常工作.这是我的代码,请看看我做错了什么
I am using php header in javascript but it is not working. this is my code, kindly see what i did wrong
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
var n = document.getElementById('id').value;
var p = document.getElementById('pw').value;
var queryString = "?emailID=" + n+"&pw="+p;
$.ajax({url:"ajax-example.php"+queryString, success:function(result){
if(result==1)
{
$("div").html("correct");
header('Location: http://www.hotmail.com');
}
else
$("div").html(result);
}});
});});
</script>
</head>
<body>
<div> </div>
Username : <input type="text" name="id" id="id">
Password: <input type="password" name="pw" id = "pw">
<button>Authenticate</button>
</body>
</html>
推荐答案
这篇关于php标头可以在javascript中工作吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!