简体   繁体   English

禁用kendoeditor中的复制粘贴

[英]disable copy paste in kendoeditor

Disable the copy paste in kendo editor when we switch to different tabs. 当我们切换到其他选项卡时,请在kendo编辑器中禁用复制粘贴。

This is my below code which I have tried but not working 这是我尝试但无法正常工作的以下代码

 <script> $(document).ready(function(){ $('input').on("cut copy paste", function(e) { e. prevent Default(); }); }); </script>​ 

  $(document).ready(function () { $('#txArNcrLineDescription').bind('copy paste cut', function (e) { e.preventDefault(); //disable cut,copy,paste }); }); 

$($("#txArNcrLineDescriptionValue").data().kendoEditor.body).bind("cut copy paste", 
    function (e) {
        e.preventDefault();
    });

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM