我有四行文字,我想在每行的右側顯示mouseenter
上的特定圖像。jQuery show/hide/mouseenter問題
我有現在的問題是,所有的四個圖像同時顯示beeing。
我在做什麼錯?
http://jsfiddle.net/m97qebjr/10
的jQuery:
$(".thumb").hide();
$(".text").mouseenter(function() {
$(".thumb").show();
}).mouseleave(function() {
$(".thumb").hide();
});
純CSS也很棒...非常感謝! – Too 2014-10-29 21:58:51
@too歡迎您 – 2014-10-29 22:00:33
這顯示圖像.wrap'懸停時',他的版本顯示,只有當'.text'懸停圖像。 – 2014-10-29 22:03:51