我是前端新手,需要使用 ckeditor 但有一些 mods 这是我的代码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CKEditor Example</title>
<script src="https://cdn.ckeditor.com/4.10.1/standard/ckeditor.js"></script>
</head>
<body>
<textarea name="text_editor"></textarea>
<script>
//-------------------------------------
CKEDITOR.replace( 'text_editor' );
width: '70%';
CKEDITOR.config.removeButtons = 'Image';
//-------------------------------------
</script>
</body>
</html>
我需要删除“图像”按钮,但我做不到。
为什么下面的代码不起作用?
CKEDITOR.config.removeButtons = 'Image';
请帮忙
精慕HU
相关分类