jQuery基础教程-第5章练习

05.js


$(document).ready(function(){
    //Answer 1
    // Add "back to top" links.
    $('back to top').insertAfter('div.chapter p:gt(2)');
    $('').prependTo('body');

    //Answer 2
    $('.chapter a[href*="top"]').click(function(){
        $('

You were here

').insertAfter($(this)); }); //Answer 3,4 $('#f-author').click(function(){ if($('#container').parent().is('strong')){ $(this).parent().unwrap(''); }else{ $(this).parent().wrap(''); } }); //Answer 5 $('div.chapter p').wrapInner('
'); });

你可能感兴趣的:(jQuery)