我的jQuery不会激活

My jQuery will not activate

本文关键字:激活 jQuery 我的      更新时间:2023-09-26

MyjQuery不会在单击时激活。我的目标是所有a级潜水艇http://jsfiddle.net/clarinetking/BbSMW/6/(JSFiddle)

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

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

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

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