📄 x__tagger.js
字号:
function x__window_onload() {
//include stylesheet
var link = document.createElement("LINK");
link.rel = "stylesheet";
link.type = "text/css";
link.href = "css/x__tagger.css";
link.charset = "utf-8";
document.body.appendChild(link);
//create a iframe tag into body, and funtion run in the iframe. this can be avoid function conflict with exists function in the original page
var iframe = document.createElement("IFRAME");
iframe.src = "js/x__tagger_inner.html";
iframe.style.display = "none";
document.body.appendChild(iframe);
}
if (window.addEventListener) {
window.addEventListener("load", x__window_onload, false);
} else if (window.attachEvent) {
window.attachEvent("onload", x__window_onload);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -