diff --git a/app/index/view/topic_nas/help.html b/app/index/view/topic_nas/help.html index 0b22e80d..f1658cb6 100644 --- a/app/index/view/topic_nas/help.html +++ b/app/index/view/topic_nas/help.html @@ -59,7 +59,7 @@ {if condition="!empty($co.desc) && str_contains($co.desc, ' + $co.title_txt_color])}>{$co.title} {else/} $co.title_txt_color])}>{$co.title} @@ -73,7 +73,7 @@ {if condition="!empty($co.desc) && str_contains($co.desc, ' + $co.title_txt_color])}>{$co.title} {else/} $co.title_txt_color])}>{$co.title} @@ -132,12 +132,20 @@ }); $('.nhlplxwmit:not(:first)').hover(function () { // 当鼠标移入时,显示.lxewmimg 并隐藏.lximg - $(this).find('.lxewmimg').show(); - $(this).find('.lximg').hide(); + var lxe = $(this).find('.lxewmimg'); + var lxi = $(this).find('.lximg'); + if (lxe.length > 0) { + lxe.show(); + lxi.hide(); + } }, function () { // 当鼠标移出时,隐藏.lxewmimg 并显示.lximg - $(this).find('.lxewmimg').hide(); - $(this).find('.lximg').show(); + var lxe = $(this).find('.lxewmimg'); + var lxi = $(this).find('.lximg'); + if (lxe.length > 0) { + lxe.hide(); + lxi.show(); + } }); }); })