$('div').append( '<b>hello</b>' ); //将后面添加到前面的末尾 $('div').appendTo( $('div2') ); //将前面添加到后面的末尾 $('div').prependTo( $('div3') ); //将后面添加到前面的开头