Last active
June 12, 2017 04:02
-
-
Save Chion82/d8af24cfe6a7ec381b60da672183d697 to your computer and use it in GitHub Desktop.
选课高亮提示
This file contains hidden or 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
electCourseTable.config.time=500; | |
window.confirm=function(){ | |
return true; | |
}; | |
function updateCountHint(){ | |
$('.stdCount').each(function(){ | |
var numArray = $(this).html().split('/'); | |
if (numArray[2] >= 1) { | |
$(this).css({'background-color':'red'}); | |
if ($(this).parent().find('a[title="点击查看教学任务信息"]').html().indexOf('日语') !== -1) { | |
$(this).parent().find('a[operator="ELECTION"]').click(); | |
} | |
} | |
}); | |
} | |
setInterval(updateCountHint, 200) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment