异步加载图片
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了异步加载图片相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.clickBox{width:100px;height:20px;border:1px solid red;}
</style>
</head>
<body>
<script type="text/javascript">
var can="http://s1.hao123img.com/resource/site/img/logo.6456fa5.gif";
function D(url){
return new Promise(function(resolve, reject) {
var image = new Image();
image.onload = function() {
resolve(image);
};
image.onerror = function() {
reject(new Error(‘Could not load image at ‘ + url));
};
image.src = url;
});
}
D(can).then(function(value) {
alert(‘老二‘);
document.body.appendChild(value);
alert(‘老三‘);
});
alert(‘老大‘);
</script>
</body>
</html>
以上是关于异步加载图片的主要内容,如果未能解决你的问题,请参考以下文章