我的jQuery不会激活

时间:2013-11-18 18:53:23

标签: javascript jquery jquery-selectors

我的jQuery不会在点击时激活。我的目标是所有类的div http://jsfiddle.net/clarinetking/BbSMW/6/(JSFiddle)

$(document).ready(function () {
$(".a").click(function () {
    $(this).fadeOut(default:400);
});
});

1 个答案:

答案 0 :(得分:1)

你的小提琴中没有jQuery,你忘了引号:

$(document).ready(function(){
    $('div').mouseover(function(){
        $(this).fadeOut('slow');
    });
});

新小提琴:http://jsfiddle.net/qwertynl/KMjG6/