日期:2014-05-17  浏览次数:20596 次

ajax接受不到返回的信息
a.html:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script language='javascript' type='text/javascript' src="js/ajax.js"></script>
<script language='javascript' type='text/javascript' src="js/jquery.js"></script>
<script type="text/javascript">
function check()
{
var con = document.getElementById('con').value;
//alert(con);

//创建ajax
var ajax = createAjax();
//是否创建成功
//alert (ajax);
var data = new Date();

var urlStr = 'b.php?action='+data.getTime();
//alert(urlStr);
$.ajax({
url:urlStr,
datatype: "json", 
cache: false,
success:function(response){
alert(response);
}
});
}
</script>
</head>

<body>
<form action='' method='post' enctype="application/x-www-form-urlencoded">
<input type='text' name='con' id='con' value='' />
<input type='submit' name='sub' value='提交' onclick='check()'/>
</form>
</body>
</html>


b.php:

echo true;


ajax接受不到b.php返回的信息,请问错在哪里,谢谢

------解决方案--------------------
你点击按钮之后不会跳转吗
------解决方案--------------------
<input type='button' name='sub' value='提交' onclick='check()'/>