Created
June 3, 2011 12:19
-
-
Save magicshui/1006254 to your computer and use it in GitHub Desktop.
一键完成教学评估
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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