在jQuery回调上运行PHP函数

时间:2011-04-22 19:07:05

标签: php jquery callback

$('#target').html(????????).ajax()

需要这个加载带有id目标的<div>的php页面。我如何调用该php页面?

这是我的问题,我的设置不是试图包含javascript变量obj.info:

function(obj){jQuery.ajax({'url':'/controller/\'+obj.info+\'','cache':false,'success':function(html){jQuery('#target').html(html)}})}

每当我尝试使用变量obj.info时,函数都会失败。

2 个答案:

答案 0 :(得分:1)

$('#target').load('url/to/php/script.php');

http://api.jquery.com/load/

答案 1 :(得分:0)

$.ajax({
  'url/to/php/script.php', 
  data: { 'varName': yourJsVariable },
  success: function(response) {
    // your php script returns HTML content
    //
    $('#element').html(response);
  }
});

检查.ajax()页面以获取更多信息:http://api.jquery.com/jQuery.ajax/