是否有可能在html標籤中有一個jQuery的鼠標懸停?html標籤中的jquery:關於mouseover =「myfunction();」
for(x=1; isset($_COOKIE["link$x"]); $x++)
echo <div id="'.$x.'" onLoad="myfunction('.$x.')">
}
和上面一樣,但用 「的mouseenter」 這個例子insted的 「的onLoad」 的?
for(x=1; isset($_COOKIE["link$x"]); $x++)
echo <div id="'.$x.'" OnMouseEnter="myfunction('.$x.')">
}
,然後在javascript
function myfunction(which){
document.getElementById(which).style.backgroundColor = red;
}
http://reference.sitepoint.com/html/extended- event-attributes/onmouseenter - 你試過用mouseenter嗎?編輯:這裏你去 - > http://jsfiddle.net/Le3kk/ – Gasim
你可以使用'onmouseover'事件,因爲HTML中沒有'onMouseEnter'事件作爲屬性。 –
在我的頁面上沒有任何反應,也許是因爲我用php迴應了div?有沒有辦法用javascript和jquery做mouseEnter? – user3129452