Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
slate.comでこのページに出くわしました。このページでは、1 つのインスタンスにカーソルを合わせると、表内の類似した単語が強調表示されます 。これはできていますか?
次のようにjQueryでそれを行うことができます:
$('table td').mouseover(function() { $('table td').removeClass('highlight') var text = $(this).text(); $('table td').filter(function() { return $(this).text() == text; }).addClass('highlight'); })
このjsFiddleを確認してください