晨读单词: toggle:切换 each:每个(遍历) append:追加(内部追加,将B追加到A的内部结尾处) appendTo:追加(内部追加,将A追加到B的内部结尾处) prepend:追加(内部追加,将B追加到A的内部开始处) prependTo:追加(内部追加,将A追加到B的内部开始处) find:查找 after(content | fn) 后来,以后(外部追加,在content后面追加) before(content | fn) 以前,在前(外部追加,在content前面追加) i…