赣南脐橙

佰草伐

导航

异步回调

function loadAsset(url, type, callback) {
  let xhr = new XMLHttpRequest();
  xhr.open('GET', url);
  xhr.responseType = type;

  xhr.onload = function() {
    callback(xhr.response);
  };

  xhr.send();
}

function displayImage(blob) {
  let objectURL = URL.createObjectURL(blob);

  let image = document.createElement('img');
  image.src = objectURL;
  document.body.appendChild(image);
}

loadAsset('coffee.jpg', 'blob', displayImage);

  

posted on 2020-10-22 17:35  佰草伐  阅读(108)  评论(0编辑  收藏  举报

自定义导航网站

php基础知识

Wood Furniture