質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -85,3 +85,81 @@
|
|
85
85
|
|
86
86
|
|
87
87
|
どこが間違っているのか、教えていただけますでしょうか。
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
---------------------------------------------------------------------------------------------
|
92
|
+
|
93
|
+
querykumaさんから回答をいただき、新しい疑問点を追加しました。
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
送信ボタンを押すと、エディタ内の文書をデータとして取ってくる、getData()を同じように使ってみましたが、エラーが発生しました
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
```JavaScript
|
102
|
+
|
103
|
+
<head>
|
104
|
+
|
105
|
+
<meta charset="utf-8">
|
106
|
+
|
107
|
+
<title>CKEditor 5 – Classic editor</title>
|
108
|
+
|
109
|
+
<script src="https://cdn.ckeditor.com/ckeditor5/12.3.1/classic/ckeditor.js"></script>
|
110
|
+
|
111
|
+
</head>
|
112
|
+
|
113
|
+
<body>
|
114
|
+
|
115
|
+
<h1>Classic editor</h1>
|
116
|
+
|
117
|
+
<textarea name="content" id="editor">
|
118
|
+
|
119
|
+
<p>This is some sample content.</p>
|
120
|
+
|
121
|
+
</textarea>
|
122
|
+
|
123
|
+
<input type="submit" value="送信" onclick="func1">
|
124
|
+
|
125
|
+
<script>
|
126
|
+
|
127
|
+
ClassicEditor
|
128
|
+
|
129
|
+
.create( document.querySelector( '#editor' ) )
|
130
|
+
|
131
|
+
.then( editor => {
|
132
|
+
|
133
|
+
console.log( editor );
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
} )
|
140
|
+
|
141
|
+
.catch( error => {
|
142
|
+
|
143
|
+
console.error( error );
|
144
|
+
|
145
|
+
} );
|
146
|
+
|
147
|
+
var func1 = function(){
|
148
|
+
|
149
|
+
const data = editor.getData();
|
150
|
+
|
151
|
+
console.log(data);
|
152
|
+
|
153
|
+
};
|
154
|
+
|
155
|
+
</script>
|
156
|
+
|
157
|
+
</body>
|
158
|
+
|
159
|
+
</html>
|
160
|
+
|
161
|
+
```
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
解決するには、何を勉強したらよいでしょうか?
|