這適用於Firefox,但不適用於Chrome或Safari。我有jQuery .hover並且工作正常,但是當我在該div內的圖像中添加了內嵌onmouseover/onmouseout時,.hover(.main-description)不會顯示。當我懸停但是文本塊(.main-description)不會顯示時,它實際上會將狀態更改爲「阻止」。onmouseover/onmouseout與chQuery上的JQuery .hover衝突?
HTML:
<img src="no-hover.png"
width="250" height="250" title="me"
onmouseover="this.src='hover.png';"
onmouseout="this.src=no-hover.png';">
JS:
$(".feature-main").hover(
function() {
$(this).children(".main-description").show();
},
function() {
$(this).children(".main-description").hide();
}
任何幫助,將不勝感激。我是否應該採用不同的解決方案?將onmouseover/onmouseout移動到JS呢?
You can check out the site at here
謝謝!