名称描述的未定义索引。我正在使用div而不是文本区域。但在提交时,其结尾为“未定义的索引:描述”。
< div id="editor-container" class="add-new-post__editor mb-1" name="description" required autocomplete="none">< | div >
它在浏览器上显示为结束
“注意:未定义的索引:C:\ xampp \ htdocs \中的描述”
/*
|--------------------------------------------------------------------------
| Shards Dashboards: Blog Add New Post Template
|--------------------------------------------------------------------------
*/
'use strict';
(function ($) {
$(document).ready(function () {
var toolbarOptions = [
[{ 'header': [1, 2, 3, 4, 5, false] }],
['bold', 'italic', 'underline', 'strike'], // toggled buttons
['blockquote', 'code-block'],
[{ 'header': 1 }, { 'header': 2 }], // custom button values
[{ 'list': 'ordered'}, { 'list': 'bullet' }],
[{ 'script': 'sub'}, { 'script': 'super' }], // superscript/subscript
[{ 'indent': '-1'}, { 'indent': '+1' }], // outdent/indent // remove formatting button
];
// Init the Quill RTE
var quill = new Quill('#editor-container', {
modules: {
toolbar: toolbarOptions
},
placeholder: 'Words can be like x-rays if you use them properly...',
theme: 'snow'
});
});
})(jQuery);