LoginSignup
1
1

More than 5 years have passed since last update.

ダウンロード

Last updated at Posted at 2018-11-15

download [ver1] | CreateJS

aタグでファイルをダウンロードさせるよ。リンクをクリックしてね。

<a id="download" href="../file/piyo.png" download="ひよこちゃん"></a>

download [ver2] | CreateJS

CreateJS 上のボタンからファイルをダウンロードさせるよ。ひよこちゃんをクリックしてね。
(aタグは見えなくしてあるだけ)

piyo.addEventListener("click", download);

function download(event) {
    document.getElementById("download").click();
}
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1