$('#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时,函数都会失败。
答案 0 :(得分:1)
$('#target').load('url/to/php/script.php');
答案 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/