<script type="text/javascript"> CKEDITOR.instances["Content"].on("instanceReady", function () { //set keyup event this.document.on("keyup", AutoSave); //and click event this.document.on("click", AutoSave); //and select event this.document.on("select", AutoSave); }); function AutoSave() {//相应的操作过程,可以按下面写,也可以按一般javascript过程写。 CKEDITOR.tools.setTimeout(function () { alert("10101010"); }, 0); } </script>