あなたの質問が理解できれば、これは jquery を使って簡単に行うことができます。
まず、属性を持つ html 要素を設定します。私は を使っています。あなたは (ほとんど) 何でもthisisfor
使えます。したがって、サーバー側で各アイテムが属する「グループ」を事前に決定できる場合は、選択した属性でそれらを分類し、次に「グループ」に分類できます。
html
<div class="hoverme" thisisfor="group3">What group are we in?</div>
<div class="hoverme" thisisfor="group3">What group are we in?</div>
<div class="hoverme" thisisfor="group2">What group are we in?</div>
<div class="hoverme" thisisfor="group4">What group are we in?</div>
thisisfor
次に、jquery を使用して、属性 (この場合は属性) をチェックするホバー イベントを設定できます。
jquery
$("[thisisfor]").hover(function(){ /* anything with 'thisisfor' attribute */
var group = $(this).attr('thisisfor'); /* store its value as variable 'group' */
$("[thisisfor="+ group +"]").html(group); /* all with this group that was hovered....change the text (or whatever your plan is) */
});
私の例を見てください
しかし、そう、可能性は属性を使用して無限大です.