我使用TinyMCE 4,这是我的代码:
<script type="text/javascript" src="//cdn.tinymce.com/4/tinymce.min.js"></script>
<script>
tinymce.init({
selector: 'textarea[name=content]',
plugins: 'image code',
toolbar: 'undo redo | link image | code',
image_title: true,
automatic_uploads: true,
file_picker_types: 'image',
file_picker_callback: function(cb, value, meta) {
var input = document.createElement('input');
input.setAttribute('type', 'file');
input.setAttribute('accept', 'image/*');
input.onchange = function() {
var file = this.files[0];
var reader = new FileReader();
reader.onload = function () {
var id = 'blobid' + (new Date()).getTime();
var blobCache = tinymce.activeEditor.editorUpload.blobCache;
var base64 = reader.result.split(',')[1];
var blobInfo = blobCache.create(id, file, base64);
blobCache.add(blobInfo);
cb(blobInfo.blobUri(), { title: file.name });
};
reader.readAsDataURL(file);
};
input.click();
}
});
</script>
我有一个问题。当我点击&#34;提交&#34;按钮,形式不是&#39; t发送但在网络浏览器控制台中我有错误:&#34;无效的表单控件,名称=&#39;内容&#39;是无法集中精力的。&#34;
请帮助我,我该如何解决这个问题呢?提前感谢所有建议。
答案 0 :(得分:4)
问题来自隐藏textarea的tinymce。删除所需的属性,它应该被修复!