新知识点

toggleClass

$("button").click(function(){
$("p").toggleClass("main");
});

each中的 false

Use return false to break out of each() loops(循环) early.

$( "div" ).each(function( index, element ) {
// element == this
$( element ).css( "backgroundColor", "yellow" );
if ( $( this ).is( "#stop" ) ) {
$( "span" ).text( "Stopped at div index #" + index );
return false;
}
});
posted @ 2017-03-30 09:52  特大土逗  阅读(126)  评论(0编辑  收藏  举报