ckeditor 简单使用

ckeditor 简单使用

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>CK editor</title>
    <script src="js/ckeditor.js"></script>
</head>
<body>
    <textarea name="editor1" id="editor1" rows="10" cols="80">This is my textarea to be replaced with CKEditor.</textarea>
    <script>
        CKEDITOR.replace("editor1");
    </script>
</body>
</html>


附件:http://down.51cto.com/data/2366703