我想创建一个包含CKEDITOR的html文件,当编辑完成后,html文件被正确修改。
<html>
<head>
<title>Editable</title>
// Adds CKEDITOR
<script src="//cdn.ckeditor.com/4.4.6/standard/ckeditor.js"></script>
</head>
<body>
// Simple DIV with in-line CKEDITOR
<div id="editable1" contenteditable="true">
<h1>Inline Editing in Action!</h1>
<p>The "div" element that contains this text is now editable.
</div>
<script>
//Adds the editor
CKEDITOR.disableAutoInline = true;
CKEDITOR.inline( 'editable' );
//When focus is lost, it will perfom the action
CKEDITOR.instances.editable.on( 'blur', function( e )
{
//Right now this change is only client side, i would like to make it serverside
$data = CKEDITOR.instances.editable.getData()
$id = this.element.$.id
document.getElementById('editable').innerHTML = $data
});
</script>
</body>
</html>
如果你看到,我对代码进行了评论,因此得到了很好的解释。 我有一个id,我有一个新的数据,我希望修改原始的HTML文件。 我应该使用巫语吗?任何特定的图书馆?
我想我需要使用php
谢谢,
答案 0 :(得分:0)
这在一个简单的StackOverflow答案中过于宽泛而无法回答,但在极其简洁的列表中的步骤
不要忘记清理你的输入!