1 Star 0 Fork 0

Clarence/ckeditor-Integration-jquery-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
implJquery.html 938 Bytes
一键复制 编辑 原始数据 按行查看 历史
user_5320650 提交于 2024-03-14 17:14 . init
<!DOCTYPE html>
<html lang="en">
<head>
<script src="jquery.min.js"></script>
<script src="ckeditor.js"></script>
<script src="adapters/jquery.js"></script>
<script type="text/javascript">
function show() {
var data = $( 'textarea.editor' ).val();
alert(data)
}
</script>
</head>
<body>
<form method="post" action="http://localhost:8088/aa">
<textarea class="editor" name="content">
&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="https://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;
</textarea>
<input type="submit" value="Save">
</form>
<button onclick="show()" >显示富文本内容</button>
</body>
<script type="text/javascript">
console.log( 'Textarea editor to be ready.' )
$('textarea.editor' ).ckeditor(function( ...args ) {
console.log( 'Textarea editor is ready.' )
});
</script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Clarence_gk/ckeditor-integration-jquery-demo.git
git@gitee.com:Clarence_gk/ckeditor-integration-jquery-demo.git
Clarence_gk
ckeditor-integration-jquery-demo
ckeditor-Integration-jquery-demo
master

搜索帮助