Function imgLoad

  • 加载图片并返回一个HTMLImageElement对象

    Parameters

    • src: string

      图片的URL地址。

    • crossOrigin: boolean = true

      是否设置跨域属性,以允许从其他域加载图片。

    Returns Promise<HTMLImageElement | undefined>

    一个Promise对象,解析为HTMLImageElement或undefined。

    async function loadImage() {
    const img = await imgLoad('https://example.com/image.jpg', true);
    if (img) {
    document.body.appendChild(img);
    } else {
    console.error('图片加载失败');
    }
    }