Home > Web Front-end > HTML Tutorial > HTML嵌入类似于编辑器_html/css_WEB-ITnose

HTML嵌入类似于编辑器_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:21:21
Original
917 people have browsed it

这个很简单,写这个博客主要是为了记忆。

下面是效果图

1.html代码

<textarea name="pDesc" id="editor_id" style="width:100%;height:150px;"></textarea>
Copy after login

2、使用:引入JS代码 kindeditor.js代码 https://yunpan.cn/OcqtE2yxnVaxmd 访问密码 a8bf。

1 <script type="text/javascript" charset="utf-8" src="../plugins/kindeditor/kindeditor.js"></script>2 <script type="text/javascript" charset="utf-8" src="../plugins/kindeditor/lang/zh_CN.js"></script>3 <script>4         KindEditor.ready(function(K) {5                 window.editor = K.create('#editor_id');6         });7 </script>
Copy after login

 

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template