簡體   English   中英

如何在代碼鏡像中更改事件 dbl-click

[英]How to change event dbl-click in code-mirror

我想更改事件 dbl click 但我的代碼不正確且不起作用 我想要代碼做什么

我的代碼

我的代碼鏡像的 jquery 代碼

function Script() {
  var ua = navigator.userAgent; 
  if (ua && ua.toUpperCase().indexOf("OPERA MINI") > -1) {
  return false;
  } 
  window.editor = CodeMirror.fromTextArea(document.getElementById("fldScript"), {
  mode: "text/javascript",
  htmlMode: true,
  lineWrapping: true,
  autoCloseTags: true,
  smartIndent: false,
  addModeClass: true,
  extraKeys: {
     "Ctrl-Space": "autocomplete",
     /*-------------- function dbl-click------------------*/
     "dblclick" : function(cm) {
       cm.setOption("fullScreen", !cm.getOption("fullScreen"));
     },
     /*-------------- function key-press F11------------------*/
     "F11": function(cm) {
       cm.setOption("fullScreen", !cm.getOption("fullScreen"));
     },
     "Esc": function(cm) {
     if (cm.getOption("fullScreen")) 
        cm.setOption("fullScreen", false);
     }
    } 
  });
  window.editor.on("change", function() {
    window.editor.save();
  });
}
Script();
function Script() {
  var ua = navigator.userAgent;
  if (ua && ua.toUpperCase().indexOf("OPERA MINI") > -1) {
return false;
}
  window.editor = CodeMirror.fromTextArea(document.getElementById("fldScript"), {
mode: "javascript",
htmlMode: true,
lineWrapping: true,
autoCloseTags: true,
smartIndent: false,
addModeClass: true,
extraKeys: {
  "Ctrl-Space": "autocomplete",
  "F11": function(cm) {
    cm.setOption("fullScreen", !cm.getOption("fullScreen"));
  },
  "Esc": function(cm) {
    if (cm.getOption("fullScreen")) cm.setOption("fullScreen", false);
  }
}
  });
  window.editor.on("change", function() {
   window.editor.save();
 });
  window.editor.on('dblclick', function() {
   if (window.editor.getOption("fullScreen") == false)
window.editor.setOption("fullScreen", !window.editor.getOption("fullScreen"));
  });
}
Script();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM