123456789101112131415161718192021222324 |
- function test(text)
- {
-
- download("GFG.json", text);
- return "111";
- }
- function download(file, text) {
-
- var element = document.createElement('a');
- element.setAttribute('href','data:text/plain;charset=utf-8,'+encodeURIComponent(text));
- element.setAttribute('download', file);
-
-
- document.body.appendChild(element);
-
- element.click();
- document.body.removeChild(element);
- }
|