jquery如何寫類似a:hover這種的css
比如CSS
a:hover { color:white; }
那如何使用jquery寫這個語句呢?
$('a').css('color', 'white')僅相當於a { color:white; }
------解決方案--------------------
$('a').hover(function(){$(this).css('color','white');},
function(){$(this).css('color','#fff');});