新知识点
Posted 特大土逗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新知识点相关的知识,希望对你有一定的参考价值。
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;
}
});
以上是关于新知识点的主要内容,如果未能解决你的问题,请参考以下文章