getById($_GET['id']); //dump($vo); if($vo) { echo json_encode($vo); } 前端ajax这样子写 function edit (id) { $('#tan').css('display',''"/> getById($_GET['id']); //dump($vo); if($vo) { echo json_encode($vo); } 前端ajax这样子写 function edit (id) { $('#tan').css('display',''">
Home > Backend Development > PHP Tutorial > 从php后台读出一个表单上的数据,对其进行了json_encode怎么把每一项传给相应的html元素,知道用jquery的html方法,但是语法不知道。

从php后台读出一个表单上的数据,对其进行了json_encode怎么把每一项传给相应的html元素,知道用jquery的html方法,但是语法不知道。

WBOY
Release: 2016-06-06 20:47:36
Original
994 people have browsed it

if(!empty($_GET['id'])) {
$sale= M("sale");
$vo= $sale->getById($_GET['id']);
//dump($vo);
if($vo) {
echo json_encode($vo);
}

前端ajax这样子写
function edit (id)
{
$('#tan').css('display','');
$.ajax({
type:'post',
url:"ROOT/livecrm/index.php?m=Cuactivity&a=edite&id="+id,
success:function(data){
$(#name).html({name});
}
})
就是ajax完成后数据怎么赋给相应的元素,比如这里的一个用户名name,sex,ajax请求完成编辑,值从后台取出来怎么把json通过html方法给响应的元素。

回复内容:

if(!empty($_GET['id'])) {
$sale= M("sale");
$vo= $sale->getById($_GET['id']);
//dump($vo);
if($vo) {
echo json_encode($vo);
}

前端ajax这样子写
function edit (id)
{
$('#tan').css('display','');
$.ajax({
type:'post',
url:"ROOT/livecrm/index.php?m=Cuactivity&a=edite&id="+id,
success:function(data){
$(#name).html({name});
}
})
就是ajax完成后数据怎么赋给相应的元素,比如这里的一个用户名name,sex,ajax请求完成编辑,值从后台取出来怎么把json通过html方法给响应的元素。

$('#name').val({name}) 给id为name的input赋值,这里有很多关于jQuery的问题总结:http://www.zoneself.org/category/jquery

<code class="lang-php">success:function(data){
$(#name).html(data.name);
$(#sex).html(data.sex);
}
</code>
Copy after login

)

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template