“JavaScript Download Aktuelle HTML -Seite” Code-Antworten

JavaScript Download Aktuelle HTML -Seite

// 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

So setzen Sie einen Var in JS, um ein Download zu sein

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

Ähnliche Antworten wie “JavaScript Download Aktuelle HTML -Seite”

Fragen ähnlich wie “JavaScript Download Aktuelle HTML -Seite”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen