在JavaScript中,可以使用以下步骤在ajax调用期间显示屏幕进度指示器:
完整的示例代码如下:
<!DOCTYPE html>
<html>
<head>
<style>
#progress-indicator {
display: none;
/* Add your custom styles here */
}
</style>
</head>
<body>
<div id="progress-indicator">Loading...</div>
<script>
var progressIndicator = document.getElementById('progress-indicator');
// Show progress indicator before ajax call
progressIndicator.style.display = 'block';
// Simulate ajax call
setTimeout(function() {
// Ajax call completed
// Hide progress indicator
progressIndicator.style.display = 'none';
}, 2000);
</script>
</body>
</html>
这样,在ajax调用期间,屏幕上会显示一个进度指示器,告诉用户当前操作正在进行中。当ajax调用完成后,进度指示器会自动隐藏。
领取专属 10元无门槛券
手把手带您无忧上云