关于ajax问题,在线等,先谢谢各位了
index.php页面有两个div,ID分别为div1,div2,对应的事件为:
<br />$.ajax({<br /> url: test.php,<br /> type: 'post',<br /> dataType:'text',<br /> success: function (responseText) {<br /> $('#div1').html(responseText);<br /> $('#div2').html(responseText);<br /> }<br /> });<br />
$res = array(<br /> 'div1' => '相关内容',<br /> 'div2' => '相关内容',<br />)<br />echo json_encode($res);<br />
$.ajax({<br /> url: 'test.php',<br /> type: 'post',<br /> dataType:'json',<br /> success: function (data) {<br /> $('#div1').html(data.div1);<br /> $('#div2').html(data.div2);<br /> }<br />});
$.post('test.php', {}, function(d) {<br /> for(var i in d) $('#'+i).html(d[i]);<br />}, 'json');