hp6buttons.js_

来自「很棒的在线教学系统」· JS_ 代码 · 共 43 行

JS_
43
字号
//CODE FOR HANDLING NAV BUTTONS AND FUNCTION BUTTONS//[strNavBarJS]function NavBtnOver(Btn){	if (Btn.className != 'NavButtonDown'){Btn.className = 'NavButtonUp';}}function NavBtnOut(Btn){	Btn.className = 'NavButton';}function NavBtnDown(Btn){	Btn.className = 'NavButtonDown';}//[/strNavBarJS]function FuncBtnOver(Btn){	if (Btn.className != 'FuncButtonDown'){Btn.className = 'FuncButtonUp';}}function FuncBtnOut(Btn){	Btn.className = 'FuncButton';}function FuncBtnDown(Btn){	Btn.className = 'FuncButtonDown';}function FocusAButton(){	if (document.getElementById('CheckButton1') != null){		document.getElementById('CheckButton1').focus();	}	else{		if (document.getElementById('CheckButton2') != null){			document.getElementById('CheckButton2').focus();		}		else{			document.getElementsByTagName('button')[0].focus();		}	}}

⌨️ 快捷键说明

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