萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> 數據庫綜合 >> 如何使用Jquery和PHP Ajax JSON

如何使用Jquery和PHP Ajax JSON

計算機作為信息時代的主要載體和工具,正擔負著越來越重要的作用,下面就讓我們一起來欣賞這篇關於使用Jquery和PHP Ajax JSON的文章吧!

無緩存,無錯版

$.ajax({

type: "GET",

url: "index.php",

cache: false,

data: "con=Add&act=_search&key=" + key+"&id="+id,

dataType:"json",

success: function(msg){

bindGroupList(msg);

}

});

//綁定

function bindGroupList(result)

{

var eles = document.forms['theForm'].elements;

eles['group_id'].length = 1;

for (i = 0; i < result.content.length; i++)

{

var opt = document.createElement('OPTION');

opt.value = result.content[i].id;

opt.text  = result.content[i].name;

eles['group_id'].options.add(opt);

}

}

會緩存

$.getJSON("?con=Add&act=_search&key=" + key+"&id="+id, function(data){

//bindGroupList(data)

});

=====php make_json_result=======

/**

* 創建一個JSON格式的數據

*

* @access  public

* @param   string      $content

* @param   integer     $error

* @param   string      $message

* @param   array       $append

* @return  void

*/

function make_json_response($content = '', $error = "0", $message = '', $append = array()) {

$res = array(

'error' => $error,

'message' => $message,

'content' => $content

);

if (!empty($append)) {

foreach ($append AS $key => $val) {

$res[$key] = $val;

}

}

$val = json_encode($res);

exit($val);

}

/**

*

*

* @access  public

* @param

* @return  void

*/

function make_json_result($content, $message = '', $append = array()) {

make_json_response($content, 0, $message, $append);

}

return  make_json_result($list);

以上就是精品為您准備的關於使用Jquery和PHP Ajax JSON的信息,希望對您的生活工作有幫助。

copyright © 萬盛學電腦網 all rights reserved