hp6hotpotnet.js_

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

JS_
19
字号
//HOTPOTNET-RELATED CODEvar HPNStartTime = (new Date()).getTime();var SubmissionTimeout = 30000;var Detail = ''; //Global that is used to submit tracking datafunction Finish(){//If there's a form, fill it out and submit it	if (document.store != null){		Frm = document.store;		Frm.starttime.value = HPNStartTime;		Frm.endtime.value = (new Date()).getTime();		Frm.mark.value = Score;		Frm.detail.value = Detail;		Frm.submit();	}}

⌨️ 快捷键说明

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