“Javascript Download Página HTML atual” Respostas de código

Javascript Download Página HTML atual

// in the current page, download the html source
var hiddenElement = document.createElement('a');
hiddenElement.href = 'data:attachment/text,' + encodeURI(document.documentElement.outerHTML);
hiddenElement.target = '_blank';
hiddenElement.download = 'myFile.txt';
hiddenElement.click();
Doubtful Deer

como definir um var no js para ser um download

var textToSave = 'this is a test';

var hiddenElement = document.createElement('a');

hiddenElement.href = 'data:attachment/text,' + encodeURI(textToSave);
hiddenElement.target = '_blank';
hiddenElement.download = 'myFile.txt';
hiddenElement.click();
Lazy Lion

Respostas semelhantes a “Javascript Download Página HTML atual”

Perguntas semelhantes a “Javascript Download Página HTML atual”

Procure respostas de código populares por idioma

Procurar outros idiomas de código