即時嘗試爲圖像創建邊框時,我將鼠標懸停但它不添加它:S但我已嘗試console.log,它顯示文字我已寫入,但它dosent添加類到它:小號jquery addclass問題
這是我的代碼
<style>
.test {
border: 1px solid #000;
}
</style>
// add a class to the image that is focus on
$('#small-image .thumb').hover(function() {
$(this).addClass('test');
console.log('hover');
}, function() {
$(this).removeClass('test');
console.log('out');
});
你爲什麼要使用jQuery和CSS不? '.thumb:hover {border:1px solid#000}'? – Phil 2011-04-12 21:32:10
你有一個jsfiddler.net的例子,你在做什麼? – LeRoy 2011-04-12 21:33:39