:::

3. Selecting by ID and Class

$(document).ready(function() {
    $('button').click(function() {
        $(#blue).fadeOut('slow');
    });
});

 

$(document).ready(function() {
    $('div').click(function() {
        $(.vanish).fadeOut('slow')
    });
});


:::

語系選擇