用bootstrap4和jq 写一个请求失败,提示服务端错误消息弹窗
时间: 2024-02-17 16:01:48 浏览: 138
bootstrap实现弹窗和拖动效果
好的,以下是一个使用Bootstrap 4和jQuery实现的请求失败弹窗的示例代码:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>请求失败弹窗</title>
<link rel="stylesheet" href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.5.3/css/bootstrap.min.css">
</head>
<body>
<button id="requestBtn" class="btn btn-primary">发起请求</button>
<!-- 失败弹窗 -->
<div class="modal fade" id="errorModal" tabindex="-1" role="dialog" aria-labelledby="errorModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="errorModalLabel">服务端错误</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p id="errorContent"></p>
</div>
</div>
</div>
</div>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.5.3/js/bootstrap.min.js"></script>
<script>
$(function() {
$('#requestBtn').click(function() {
$.ajax({
url: 'your_api_url',
type: 'GET',
success: function(response) {
// 请求成功的处理
},
error: function(xhr, status, error) {
// 请求失败的处理
var errorMsg = xhr.responseText;
$('#errorContent').text(errorMsg);
$('#errorModal').modal('show');
}
});
});
});
</script>
</body>
</html>
```
这个示例代码中包含一个按钮,点击按钮会发起一个GET请求,请求的URL可以自己替换成自己的API地址。请求失败时,会弹出一个模态框,显示服务端返回的错误消息。其中,`#errorContent`用来显示错误消息内容,`#errorModal`则是整个模态框的ID,通过调用`$('#errorModal').modal('show')`来显示模态框。
阅读全文