jq在页面加载赋值完成前先出现加载loading
时间: 2024-04-18 07:30:17 浏览: 88
您好!如果您想在页面加载完成前使用jQuery显示加载loading,您可以使用以下代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>Loading Example</title>
<style>
.loading {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #f1f1f1;
z-index: 9999;
}
.loading::before {
content: "";
width: 50px;
height: 50px;
border-radius: 50%;
border: 5px solid #ccc;
border-top-color: #888;
animation: spin 1s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
</style>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function() {
var loading = $('<div class="loading"></div>');
$('body').append(loading);
// 模拟加载数据的延迟
setTimeout(function() {
var data = '<h1>这是加载完成的内容</h1>';
$('#content').html(data);
loading.remove();
}, 2000);
});
</script>
</head>
<body>
<div id="content"></div>
</body>
</html>
```
在上面的示例中,我们通过jQuery在DOM准备就绪时创建一个加载loading的元素,并将其添加到页面的body中。然后,通过setTimeout函数模拟了一个2秒钟的延迟,在延迟结束后,加载完成的内容被赋值给了id为"content"的元素,并移除了加载loading。
请注意,上述示例中的jQuery库是通过CDN引入的,您也可以将其下载到本地并修改相应的引入路径。
希望对您有所帮助!如果您有任何其他问题,请随时提问。
阅读全文