php jquery ajax怎么把php文件里面的字符返回完了?

$(document).ready(function(){$(":button").click(function(){$.ajax({url:'aa.php',type:... $(document).ready(function(){
$(":button").click(function(){
$.ajax({
url:'aa.php',
type:'get',
data: 'do=test&name=必优博客',
success:function(responseText){
alert(responseText);
$("#aa").html(responseText);
}
});
});
});
等于把php文件里面的源代码全输出了求解啊
展开
 我来答
匿名用户
2013-09-17
展开全部
新建一个页面b.php,ajax请求这个页面 ,b.php用来文件流来读取aa.php 里面的文本,然后b.php返回这个文件流的数据

$(document).ready(function(){
$(":button").click(function(){
$.ajax({
url:'b.php',
type:'get',
data: 'do=test&name=必优博客',
success:function(responseText){
alert(responseText);
$("#aa").html(responseText);
}
});
});
});

b.php
$path = "aa.php"
<%php
$file_handle = fopen($path, "r");while (!feof($file_handle)) { $line = fgets($file_handle); echo $line;}
fclose($file_handle);

%>

个人意见
匿名用户
2013-09-17
展开全部
$(document).ready(function(){
$(":button").click(function(){
$.ajax({
url:'aa.php',
type:'get',
data: 'do=test&name=必优博客',
dataType:'text',
success:function(responseText){
alert(responseText);
$("#aa").html(responseText);
}
});
});
});

如果还不行的话把php里的那个header去掉看看
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式