我想使用新的 CKEditor 4 ( http://docs.ckeditor.com/#!/guide/dev_inline-section-2 ) 的“内联编辑”,但找不到任何关于如何使用 PHP 保存数据的示例/MySQL。你能帮助我吗?
问问题
1931 次
1 回答
1
下面是一个关于如何从 Ckeditor 传递数据的示例。通过按下按钮,您可以通过 ajax 保存内容。
<div id="editable" contenteditable="true">
<h1>Inline Editing in Action!</h1>
<p>The div element that contains this text is now editable.
</div>
<button type='button' id='save'><span>Save</span></button>
<script>
$(document).ready(function (e) {
$("#save").click(function (e) {
var data = CKEDITOR.instances.editable.getData();
var options = {
url: "/path/to/php",
type: "post",
data: { "editor" : encodeUriComponent(data) },
success: function (e) {
//code to do when success
}
};
}
});
</script>
于 2013-07-03T10:48:10.453 回答