这只是一个简单的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>
但是,当我尝试使用Google脚本运行它时,它就是The out put should be like this