将CKEditor文本保存/下载到本地文件系统

时间:2015-03-20 14:54:41

标签: javascript jquery download ckeditor local-storage

我正在尝试将CKEditor中的文本保存到本地文件系统。这就是我所做的:

    $('#saveButton').click(function(){
  var htmlData = CKEDITOR.instances.editor1.getData();
  blob = new Blob([htmlData], { type: 'text/html' });
  var data = URL.createObjectURL(blob);
  $(this)
  .attr({
    'download': "test.html",
    'href': data
  });
});

我在这里尝试的只是将htmlData中的文本下载/保存到本地存储。

因此,当点击saveButton时,此功能目前适用于Chrome,但不适用于IE或Mozilla。有没有人知道这种方式是跨浏览器兼容的。任何帮助,将不胜感激。

0 个答案:

没有答案