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文件里面的源代码全输出了求解啊 展开
$(":button").click(function(){
$.ajax({
url:'aa.php',
type:'get',
data: 'do=test&name=必优博客',
success:function(responseText){
alert(responseText);
$("#aa").html(responseText);
}
});
});
});
等于把php文件里面的源代码全输出了求解啊 展开
2个回答
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);
%>
个人意见
$(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去掉看看
$(":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去掉看看
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询