Jquery / Ajax获取请求工作,发布请求显示空白页面

时间:2011-04-02 03:39:49

标签: php jquery ajax post get

[更新]

更改了PHP页面,并且包含了完整的URL(域名除外)。

<小时/> 这是我的html文档,它应该使用Jquery的.load函数来获取数据:

<html>
<head>
<script type="text/javascript" src="/includes/jquery-1.5.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("body").load("http://www.mywebsite.com/experimental/PHP%20response%20to%20sent%20data/index.php",{text:"Howdy!"});
});
</script>
</head>
<body>
</body>
</html>

这是我的html页面将其数据发送到
http://www.mywebsite.com/experimental/PHP%20response%20to%20sent%20data/index.php)的php页面:

<?php
while(list($key,$val) = each ($_REQUEST))
{
echo htmlspecialchars($key).": ".htmlspecialchars($val);
}
?>

如果我在浏览器中转到以下网址:

www.mywebsite.com/experimental/PHP response to sent data/index.php?text=Howdy!

然后我得到以下结果: enter image description here 这是我所期望的,但是当我转到本页顶部显示的html文档时,它会显示一个空白页面。有人可以解释什么是错的吗?我认为它与我的Jquery有关。

0 个答案:

没有答案