扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
你这里的xheditor编辑器我并没有用过,但是php echo后的内容要到前端可以使用ajax,不过我只会jquery的ajax,
邛崃网站建设公司创新互联建站,邛崃网站设计制作,有大型网站制作公司丰富经验。已为邛崃成百上千家提供企业网站建设服务。企业网站搭建\外贸网站制作要多少钱,请找那个售后服务好的邛崃做网站的公司定做!
script
$.post('index.php','',function(data){
alert(data);
});
/script
index.php中echo的内容会通过$.post方法中的data参数传入,传入后用js进行json解码,然后再处理就可以了
第一种方法:首先在前端发送一个ajax请求到你所在的页面的方法,请求成功后得到ajax返回值data,然后通过js拼接成html。
第二种方法:如果用到框架,比如tp,可以直接将获得的变量返回到前端页面然后遍历就可以
2019-05-14
当对象数组长度较大时,PHP后端获取的POST数据不完整
php.ini中max_input_vars 参数默认为1000 改为5000解决
也可使用JSON.stringify转换为JSON字符串传到后端,后端解析后再处理
?
!DOCTYPE html
html lang="en"
body
button type="button"div id="buttonValue" onclick="add();"0/div/button
div id="test"/div
script src="../js/jquery-2.1.4.js"/script
script
var a = 0;
function add() {
a++;
$.ajax({
type: 'GET',
url: 'do.php',
data: {
param: a
},
success:function (response) {
$("#buttonValue").html(a);
$("#test").html(response);
}
});
}
/script
/body
/html
以上是test.php
$a = $_REQUEST["param"];
echo $a;
以上是do.php
do.php接收参数后根据你的需求处理数据就好了。
第一种,使用smarty模板引擎
php文件:
$smarty-assign('data','hello world');
$smarty-display('index.html');
index.html文件:
div{$data}/div
输出hello world
第二种,使用PHP变量直接输出
php文件:
$data = 'hello world';
require 'index.html';
index.html:文件:
div?php echo $data;?/div
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流