如何使用Google脚本在HTML中包含所见即所得的文本编辑器

时间:2019-03-26 17:20:34

标签: google-apps-script web-applications

这只是一个简单的html页面,我只需要在它上面有一个所见即所得的文本编辑器,以便管理员可以简单地在网站上添加内容。

我试图使用google脚本在网页中包含一个所见即所得的文本编辑器,但是,当我尝试运行它时,它将在显示文本区域中显示,而不会包含编辑工具/图标。

这是我尝试的代码:

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <meta name="robots" content="noindex, nofollow">
    <title>Classic editor with default styles</title>
    <script src="http://cdn.ckeditor.com/4.6.2/standard-all/ckeditor.js"></script>
</head>

<body>

    <textarea cols="80" id="editor1" name="editor1" rows="10" >
    </textarea>

    <script>
        CKEDITOR.replace( 'editor1', {
            height: 260,
            width: 700,
        } );
    </script>
</body>

</html>

the dependency pom.xml

但是,当我尝试使用Google脚本运行它时,它就是The out put should be like this

1 个答案:

答案 0 :(得分:1)

按照here的规定

  

诸如脚本,外部样式表和XmlHttpRequest之类的“活动”内容必须通过HTTPS而非HTTP加载。