在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
demo: function FCKeditor_OnComplete( editorInstance ) { editorInstance.EditorDocument.attachEvent("onkeydown", editor_keydown); editorInstance.EditorDocument.attachEvent("onkeyup", editor_keyup); } function editor_keydown() { var oEditor = FCKeditorAPI.GetInstance('inputmsg') ; var keycode = oEditor.EditorWindow.event.keyCode; if(keycode==13) { } } function clearInput() { var oEditor = FCKeditorAPI.GetInstance('inputmsg') ; oEditor.Commands.GetCommand( "NewPage" ).Execute(); // oEditor.SetHTML("") ; } function editor_keyup() { var oEditor = FCKeditorAPI.GetInstance('inputmsg') ; var keycode = oEditor.EditorWindow.event.keyCode; if(keycode==13) { clearInput(); } } |
请发表评论