我想在我的 ajax 成功中将来自 php 的回声拆分为 2 个不同的 div。
$.ajax({
url: 'counter.php',
type: 'POST',
data: {
some_data:some_data
},
success: function(data){
$('.div1').html(data); // in here 1st echo
$('.div2').html(data); // in here 2nd echo
},
});
counter.php 中的一段代码如下所示:
if (file_exists($blogfile)) {
echo 'content updated'; // this echo should come in div1
}
else {
echo 'file does not exist anymore'; // this echo should come in div2
}
我怎样才能做到这一点?
慕森卡