jQuery知识盲点

一、属性操作(width)

alert( $('div').width() );  //width
 alert( $('div').innerWidth() );  //width + padding
 alert( $('div').outerWidth() );  //width + padding + border
 alert( $('div').outerWidth(true) );  //width + padding + border + margin

二、DOM操作

insertBefore() before()

insertAfter() after()

appendTo() append()

prependTo() prepend()

 

你可能感兴趣的:(jQuery知识盲点)