jQuery基础教程第四版练习答案

时间:2022-12-30 15:50:20

第二章

1.

$('#selected-plays>li>ul>li').nextAll().addBack().addClass('special');

2.

$('table').find('tr').each(function(){
        console.log('tr');
        var tdArr=$(this).children();
        tdArr.eq(2).addClass('year');
    });

3.

$('td:contains(Tragedy)').parent().filter('tr:eq(0)').addClass('special');

5.

$('a[href$=".pdf"]').parents('ul:eq(0)').addClass('tragedy');

第四章

1.

$('div.speech p').hide();
$('div.speech p').fadeIn(5000);

2.

$('div.speech p').hover(function(){
        $(this).css('background-color','yellow');
        },function(){
            console.log('out');
            $(this).css('background-color','#fff');
            });

3.

$('h2').click(function(){
        $(this).animate({opacity:'0.25',marginLeft:'20px'},{duration:'slow',queue:false});
        $('p').css({opacity:'0.5'});
    });