|
|
|
@ -881,39 +881,27 @@ function goTopEx() {
|
|
|
|
|
|
|
|
|
|
$(function(){
|
|
|
|
|
//匿评评分提示
|
|
|
|
|
$(".student_score_info").bind("mouseover",function(e){
|
|
|
|
|
//alert($(this).html());
|
|
|
|
|
$(".student_score_info").live("mouseover",function(){
|
|
|
|
|
$(this).find("div").show();
|
|
|
|
|
//$(this).find("div").css("top",e.pageY);
|
|
|
|
|
//$(this).find("div").css("left",e.pageX);
|
|
|
|
|
});
|
|
|
|
|
$(".student_score_info").bind("mouseout",function(e){
|
|
|
|
|
//alert($(this).html());
|
|
|
|
|
$(".student_score_info").live("mouseout",function(){
|
|
|
|
|
$(this).find("div").hide();
|
|
|
|
|
});
|
|
|
|
|
//最终成绩提示
|
|
|
|
|
$(".student_final_scor_info").bind("mouseover",function(e){
|
|
|
|
|
//alert($(this).html());
|
|
|
|
|
$(".student_final_scor_info").live("mouseover",function(){
|
|
|
|
|
$(this).find("div").show();
|
|
|
|
|
//$(this).find("div").css("top",e.pageY);
|
|
|
|
|
//$(this).find("div").css("left",e.pageX);
|
|
|
|
|
});
|
|
|
|
|
$(".student_final_scor_info").bind("mouseout",function(e){
|
|
|
|
|
//alert($(this).html());
|
|
|
|
|
$(".student_final_scor_info").live("mouseout",function(){
|
|
|
|
|
$(this).find("div").hide();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("#about_project label").eq(1).remove();
|
|
|
|
|
|
|
|
|
|
//附件下载提示
|
|
|
|
|
$(".zip_download_alert").bind("mouseover",function(e){
|
|
|
|
|
//alert($(this).html());
|
|
|
|
|
$(".zip_download_alert").bind("mouseover",function(){
|
|
|
|
|
$(this).next("div").show();
|
|
|
|
|
//$(this).next("div").css("top",e.pageY);
|
|
|
|
|
//$(this).next("div").css("left",e.pageX);
|
|
|
|
|
});
|
|
|
|
|
$(".zip_download_alert").bind("mouseout",function(e){
|
|
|
|
|
//alert($(this).html());
|
|
|
|
|
$(".zip_download_alert").bind("mouseout",function(){
|
|
|
|
|
$(this).next("div").hide();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|