This repository has been archived by the owner on Sep 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (51 loc) · 1.99 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/style.css">
<script src="js/index.html"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>InstantMemo Ver.1.0.0</title>
<style>
textarea {
resize: auto;
max-width: 1000px;
max-height: 1300px;
min-width: 1000px;
min-height: 1300px;
width: 1000px;
height: 1300px
}
</style>
</head>
<body>
<form>
<textarea name="textarea" id="textarea" cols="" rows=""></textarea>
<input type="reset" value="リセット">
<!-- クッリクした際に、テキストエリア内の文字列をダウンロードさせたい -->
<a href='javascript:download()' id="edit-btn">ダウンロード</a>
<script>
function download() {
// テキストエリア内の文字列を取得する
const text = document.getElementById('textarea').value;
// 取得した文字列をBlob形式に変換
let blobedText = new Blob([text], {type: 'text/plain' });
// BlobをURLに変換
let url = URL.createObjectURL(blobedText);
// ダウンロード可能なa要素を作成する
let link = document.createElement('a');
link.href = url;
link.download = 'memo.txt';
// 要素の追加
document.body.appendChild(link);
// linkをclickすることでダウンロードが完了
link.click();
// 「link」は不要な要素になるので、link要素を削除
link.parentNode.removeChild(link)
}
</script>
</form>
</body>
</html>
</head>