0
我缺少什麼位置:我在這個簡單的jquery中缺少什麼?
$(document).ready(function(){
$('cat_image_table').on("mouseenter", function(){
$(this).fadeOut();
});
});
很明顯的東西,因爲它不工作..似乎是如此簡單卻又如此的錯誤..
我缺少什麼位置:我在這個簡單的jquery中缺少什麼?
$(document).ready(function(){
$('cat_image_table').on("mouseenter", function(){
$(this).fadeOut();
});
});
很明顯的東西,因爲它不工作..似乎是如此簡單卻又如此的錯誤..
這會是一個.
你的選擇器:
$(document).ready(function(){
$('.cat_image_table').on("mouseenter", function(){
$(this).fadeOut();
});
});
如果你使用ID選擇器或者你應該放#號。如果你使用類選擇器。
是的...這樣做。 – Tim 2012-03-17 02:30:32
arg。笨。感謝您迅速發現.. – Sackling 2012-03-17 02:30:33
這類問題的最佳答案是準時的:^) – rjz 2012-03-17 02:32:07