我有一个简单的AJAX请求,它根据表中的一些选择更新一些PHP会话变量。如果AJAX请求出错,我会改变他们选择的表格行的颜色(如果他们选择“是”则通常会变为绿色,如果他们选择“否”则通常变为红色)。这一切都运作良好。
我现在也希望在屏幕上显示一个允许的Bootstrap警报,就像他们的例子一样:
<div class="alert alert-warning alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span>
</button>
<strong>Warning!</strong> Better check yourself, you're not looking too good.
</div>
但是我不确定当AJAX请求出错时如何显示它。这是我的剧本:
$(document).ready(function() {
$('button.btn-success').click(function() {
var refreshItemID = $(this).closest('tr').attr('id');
console.log(refreshItemID);
// Create a reference to $(this) here:
$this = $(this);
$.post('updateSelections.php', {
refreshItemID: refreshItemID,
selectionType: 'yes'
}, function(data) {
data = JSON.parse(data);
if (data.error) {
console.log(data);
console.log('something was wrong with the ajax request');
$this.closest('tr').addClass("warning");
return; // stop executing this function any further
} else {
console.log('update successful - success add class to table row');
$this.closest('tr').addClass("success");
$this.closest('tr').removeClass("danger");
//$(this).closest('tr').attr('class','success');
}
}).fail(function(xhr) {
console.log('ajax request failed');
// no data available in this context
$this.closest('tr').addClass("warning");
});
});
});
如果出现错误,您可以看到它向表格行添加了一个警告类:
$this.closest('tr').addClass("warning");
但是我不知道如何扩展它以添加一个可以容许的警报(以及如何控制该警报的定位)?
答案 0 :(得分:2)
设置警报div默认显示:无,在ajax调用成功/文件/错误内,您可以使用以下代码显示警报。
$(document).ready(function() {
$('button#alertshow').on('click', function() {
var msg_type = $("#msgtype").val();
ShowAlert(msg_type, 'Message Content', msg_type);
});
function ShowAlert(msg_title, msg_body, msg_type) {
var AlertMsg = $('div[role="alert"]');
$(AlertMsg).find('strong').html(msg_title);
$(AlertMsg).find('p').html(msg_body);
$(AlertMsg).removeAttr('class');
$(AlertMsg).addClass('alert alert-' + msg_type);
$(AlertMsg).show();
}
});
&#13;
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id="alertshow">Show alert</button>
<select id="msgtype">
<option value="warning">Warning</option>
<option value="info">Info</option>
<option value="success">Success</option>
<option value="danger">Danger</option>
</select>
<div class="alert alert-dismissible" role="alert" style="display:none;">
<strong>Warning!</strong>
<p>Better check yourself, you're not looking too good.</p>
</div>
&#13;
答案 1 :(得分:0)
E.g。在表格上方或下方添加警报的html代码,并将style="display:none"
添加到警报div。同时为该div设置一个id,如id="alert_ajax_error"
。
现在失败回调应如下所示:
.fail(function(xhr) {
console.log('ajax request failed');
// no data available in this context
$this.closest('tr').addClass("warning");
//make alert visible
$("#alert_ajax_error").show();
});
如果成功,请使用$("#alert_ajax_error").hide();