国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁(yè)javascripttoggleclassjQuery Method - 如何使用toggleClass()單擊時(shí)轉(zhuǎn)換類屬性

jQuery Method - 如何使用toggleClass()單擊時(shí)轉(zhuǎn)換類屬性

我們想知道如何使用toggleClass()單擊時(shí)轉(zhuǎn)換類屬性。

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.7.1.js'></script>
<style type='text/css'>
.first {
  color: blue;
}

.second {
  color: red;
}
</style>
<script type='text/javascript'>
$(window).load(function(){
    $('#foo').click(function() {
        $(this).toggleClass('first second');
    });
});
</script>
</head>
<body>
  <button id="foo" class="first">Click Me, Watch My Color Change</button>
</body>
</html>