quicktags_spaw.js
来自「在综合英文版XOOPS 2.09, 2.091, 2.092 的基础上正式发布X」· JavaScript 代码 · 共 17 行
JS
17 行
// smiles
function bbinsert(formObj, strIns, strInsClose ) {
theSelection = false;
if (document.selection) {
//formObj.wp_content.focus();
theSelection = document.selection.createRange().text; // Get text selection
// Add tags around selection
document.selection.createRange().text = strIns + theSelection + strInsClose;
//formObj.wp_content.focus();
theSelection = false;
return;
}
formObj.wp_content.value += strIns + strInsClose;
formObj.wp_content.focus();
return;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?