jQuery 常见属性操作方法 ******
Posted 小蚂蚁222
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery 常见属性操作方法 ******相关的知识,希望对你有一定的参考价值。
1. toggleClass()
对设置或移除被选元素的一个或多个类进行切换。
个人理解:对所选元素做一个css样式更改。
eg:
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("p").toggleClass("main");
});
});
</script>
<style type="text/css">
.main
{
font-size:120%;
color:red;
}
</style>
</head>
<body>
<h1 id="h1">This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button class="btn1">切换段落的 "main" 类</button>
</body>
</html>
以上是关于jQuery 常见属性操作方法 ******的主要内容,如果未能解决你的问题,请参考以下文章