我的jQuery不会在点击时激活。我的目标是所有类的div http://jsfiddle.net/clarinetking/BbSMW/6/(JSFiddle)
$(document).ready(function () {
$(".a").click(function () {
$(this).fadeOut(default:400);
});
});
答案 0 :(得分:1)
你的小提琴中没有jQuery,你忘了引号:
$(document).ready(function(){
$('div').mouseover(function(){
$(this).fadeOut('slow');
});
});