From 918f741db04802e4a6507d65153c149e3c8f01a9 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 30 Sep 2016 17:09:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=80=BB=E5=BE=97=E5=88=86tip=E9=BC=A0?= =?UTF-8?q?=E6=A0=87=E6=94=BE=E5=9C=A8=E6=95=B4=E8=A1=8C=E5=9D=87=E6=98=BE?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/courses/_new_member_list.html.erb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/views/courses/_new_member_list.html.erb b/app/views/courses/_new_member_list.html.erb index b3cb093b8..42228bb98 100644 --- a/app/views/courses/_new_member_list.html.erb +++ b/app/views/courses/_new_member_list.html.erb @@ -178,14 +178,14 @@ $(id).submit(); } - $(".sum_score_tip").each(function(){ + $(".sy_new_table tr").each(function(){ $(this).mouseenter(function(){ $(".sy_tips_box_inner").hide(); - $(this).next().stop(); - $(this).next().show(); + $(this).children().eq(6).children().eq(1).stop(); + $(this).children().eq(6).children().eq(1).show(); }); $(this).mouseleave(function(){ - $(this).next().delay(500).hide(0); + $(this).children().eq(6).children().eq(1).delay(500).hide(0); }); });