var a = 'Hello World From Javascript';
現在のウィンドウのjavascript変数にテキストデータ(たとえば)があります。私はjavascriptを介して次のことをしたい-
1. open a new window and write the text data to the window.
2. set the content type to text/plain.
3. set the content-disposition to attachment, so that download prompt comes.
4. user downloads the text data as a text file and saves it to his local disk.
これはすべてjavascriptで可能ですか?
サーバーまたはリダイレクトに対して ajax 呼び出しを行うことができることはわかっていますが、この場合は上記の手順に従う代わりに。ただし、この場合、これらの回避策は適用できません。