Skip to content

Instantly share code, notes, and snippets.

@magicshui
Created June 3, 2011 12:19
Show Gist options
  • Save magicshui/1006254 to your computer and use it in GitHub Desktop.
Save magicshui/1006254 to your computer and use it in GitHub Desktop.
一键完成教学评估
javascript:
// 取消时间限制
parent.bottomFrame.mainFrame.setFlag();
// 勾选所有选项为“优秀”(默认)
for(i=0;i<parent.bottomFrame.mainFrame.document.StDaForm.elements.length;i++)
{
if(parent.bottomFrame.mainFrame.document.StDaForm.elements[i].type=='radio'
&&parent.bottomFrame.mainFrame.document.StDaForm.elements[i].value=='10_1')
{
parent.bottomFrame.mainFrame.document.StDaForm.elements[i].checked=true;
}
}
// 自动输入教学评语,默认为“教学认真负责”
function xxa(){var xx=parent.bottomFrame.mainFrame.document.StDaForm.zgpj;xx.value="教学认真负责";}
xxa();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment