📄 script.js
字号:
function update( objRef, text ) { if ( document.all || document.getElementById ) { obj = ( document.getElementById )? document.getElementById( objRef ) : document.all( objRef ); obj.innerHTML= text }}function buttonMouseOver( objRef ) { if ( document.all || document.getElementById ) { obj = ( document.getElementById )? document.getElementById( objRef ) : document.all( objRef ); objRef.style.background = "white"; }}function buttonMouseOut( objRef ) { if ( document.all || document.getElementById ) { obj = ( document.getElementById )? document.getElementById( objRef ) : document.all( objRef ); objRef.style.background = "grey"; }}function doOp( op ) { document.forms[0].op.value = op document.forms[0].submit()}function doOp2( op, args ) { document.forms[0].op.value = op document.forms[0].args.value = args document.forms[0].submit()}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -