⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wikitoolbar.js

📁 trac是一款svn服务器的web客户端
💻 JS
字号:
function addWikiFormattingToolbar(textarea) {  if ((document.selection == undefined)   && (textarea.setSelectionRange == undefined)) {    return;  }  var toolbar = document.createElement("div");  toolbar.className = "wikitoolbar";  function addButton(id, title, fn) {    var a = document.createElement("a");    a.href = "#";    a.id = id;    a.title = title;    a.onclick = function() { try { fn() } catch (e) { } return false };    a.tabIndex = 400;    toolbar.appendChild(a);  }  function encloseSelection(prefix, suffix) {    textarea.focus();    var start, end, sel, scrollPos, subst;    if (document.selection != undefined) {      sel = document.selection.createRange().text;    } else if (textarea.setSelectionRange != undefined) {      start = textarea.selectionStart;      end = textarea.selectionEnd;      scrollPos = textarea.scrollTop;      sel = textarea.value.substring(start, end);    }    if (sel.match(/ $/)) { // exclude ending space char, if any      sel = sel.substring(0, sel.length - 1);      suffix = suffix + " ";    }    subst = prefix + sel + suffix;    if (document.selection != undefined) {      var range = document.selection.createRange().text = subst;      textarea.caretPos -= suffix.length;    } else if (textarea.setSelectionRange != undefined) {      textarea.value = textarea.value.substring(0, start) + subst +                       textarea.value.substring(end);      if (sel) {        textarea.setSelectionRange(start + subst.length, start + subst.length);      } else {        textarea.setSelectionRange(start + prefix.length, start + prefix.length);      }      textarea.scrollTop = scrollPos;    }  }  addButton("strong", "Bold text: '''Example'''", function() {    encloseSelection("'''", "'''");  });  addButton("em", "Italic text: ''Example''", function() {    encloseSelection("''", "''");  });  addButton("heading", "Heading: == Example ==", function() {    encloseSelection("\n== ", " ==\n", "Heading");  });  addButton("link", "Link: [http://www.example.com/ Example]", function() {    encloseSelection("[", "]");  });  addButton("code", "Code block: {{{ example }}}", function() {    encloseSelection("\n{{{\n", "\n}}}\n");  });  addButton("hr", "Horizontal rule: ----", function() {    encloseSelection("\n----\n", "");  });  addButton("np", "New paragraph", function() {    encloseSelection("\n\n", "");  });  addButton("br", "Line break: [[BR]]", function() {    encloseSelection("[[BR]]\n", "");  });  addButton("img", "Image: [[Image()]]", function() {    encloseSelection("[[Image(", ")]]");  });  $(textarea).before(toolbar);}// Add the toolbar to all <textarea> elements on the page with the class// 'wikitext'.$(document).ready(function() {  $("textarea.wikitext").each(function() { addWikiFormattingToolbar(this) });});

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -