1.URL.createObjectURLlet link = document.createElement('a'); link.download = 'hello.txt'; let blob = new Blob(['Hello, world!'], {type: 'text/plain'}); link.href = URL.createObjectURL(blob); link.c
Copyright © 2005-2025 51CTO.COM 版权所有 京ICP证060544号