作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道如何将两个单独的结果发送到 ajax j 查询成功php文件:
if(mysqli_affected_rows($dbCnn)== -1)
echo "Failed";
else
echo "Success" ;
include('table.php');
j查询:
$.ajax({
url: 'insert.php',
dataType: 'text',
type: 'post',
contentType: 'application/x-www-form-urlencoded',
data: $(this).serialize() + '&' + ids + '=' + 'submit',
success: function(data) {
$("#tableContainer").html(data);
}
});
我想要数据,一个用于 echo "Success"例如,一个用于 include table.php 。
最佳答案
你可以在 json 中序列化它们:
在你的 php 中:
ob_start();
include('table.php');
$table = ob_get_clean();
echo json_encode(array('table' => $table, 'message' => 'success'));
在javascript中修改如下:
$.ajax({
url: 'insert.php',
dataType: 'json',
type: 'post',
contentType: 'application/x-www-form-urlencoded',
data: $(this).serialize()+ '&' + ids + '=' + 'submit',
success: function(response){
$("#tableContainer").html(response.table);
alert(response.message);
}
});
关于javascript - 如何为 ajax 成功发送两个或多个单独的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35459325/
我是一名优秀的程序员,十分优秀!