chrome下自定义 ctrl + s
Posted daizhongxing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了chrome下自定义 ctrl + s相关的知识,希望对你有一定的参考价值。
在浏览器下编辑,习惯按住Ctrl+S键保存编辑内容。而网页的“ctrl + s”被默认为保存页面。
需要增加快捷保存方式 ctrl+s.
$(window).keydown(function(event) { //alert( event.ctrlKey + ‘ ‘ + event.metaKey + ‘ ‘ + event.which ); if ( event.ctrlKey && event.which == 83) { event.preventDefault(); $("#add_memo_submit").click(); }
kindeditor富文本编辑器内屏蔽了相关事件监听。
KindEditor.ready(function(K) { window.editor = K.create(‘#memo_content‘,{ width:‘100%‘, height : ‘800px‘, afterCreate : function() { let self = this; //ctrl + S 保存 K.ctrl(self.edit.doc, 83, function () { self.sync(); $("#add_memo_submit").click(); }); } }) });
Enjoy it !
以上是关于chrome下自定义 ctrl + s的主要内容,如果未能解决你的问题,请参考以下文章