为每个配的元素添加指定的样式类名
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="jQuery.js"></script>
<style>
.pc{
color: red;
}
</style>
</head>
<body>
<form id="target" >
<input type="text" value="field 1">
<input type="text" value="field 2">
<input type="submit" value="go">
</form>
<p>haha</p>
</body>
<script>
$(function(){
$("p").addClass("pc")
})
</script>
</html>
获取匹配的元素集合中的第一个元素的属性的值。设置每一个匹配元素的一个或多个属性
参数
一个参数:后面紧跟一个属性名
两个参数:属性名和属性值
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="jQuery.js"></script>
<style>
.pc{
color: red;
}
</style>
</head>
<body>
<p>haha</p>
<a >hahah</a>
</body>
<script>
$(function(){
$("p").addClass("pc");
$("a").attr('href','http://www.baidu.com');
})
</script>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="jQuery.js"></script>
<style>
.pc{
color: red;
}
</style>
</head>
<body>
<p name="hahaha">haha</p>
<a >hahah</a>
<div></div>
</body>
<script>
$(function(){
$("p").addClass("pc");
$("a").attr('href','http://www.baidu.com');
var name=$("p").attr("name");
$("div").text(name);
})
</script>
</html>
确定任何一个匹配元素是否有被分配给定的(样式)类,也就是确定一个元素有没有指定的类
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="jQuery.js"></script>
<style>
.pc{
color: red;
}
</style>
</head>
<body>
<p name="hahaha">haha</p>
<a >hahah</a>
<div></div>
<h1 class ="h11"></h1>
</body>
<script>
$(function(){
$("p").addClass("pc");
$("a").attr('href','http://www.baidu.com');
var name=$("p").attr("name");
$("div").text(name);
console.log($("h1").hasClass("h11")); 为True说明有这个类,false则说明没有这个类
})
</script>
</html>
如果是多个类,则只要包含一个则返回true?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="jQuery.js"></script>
<style>
.pc{
color: red;
}
</style>
</head>
<body>
<p name="hahaha">haha</p>
<a >hahah</a>
<div></div>
<h1 class ="h11 aa"></h1>
</body>
<script>
$(function(){
$("p").addClass("pc");
$("a").attr('href','http://www.baidu.com');
var name=$("p").attr("name");
$("div").text(name);
console.log($("h1").hasClass("aa"));
})
</script>
</html>
获取集合中第一个匹配元素的HTML内容设置每一个匹配元素的html内容。
没有参数则为获取当前元素的内容,有参数时则为为当前元素添加或者更改当前元素的内容
?? ?console.log($("a").html())
?
$("a").html("haohao");
获取匹配的元素集中第一个元素的属性( property)值为匹配的元素设置一个或多个属性( properties )?
一个参数:属性名
两个参数:属性名及属性值
prop( propertyName)
console.log($("input").prop("value"))
?
?获取到的属性只能是标签已有或默认的属性,自己添加的属性不能获取
?? ?console.log($("input").prop("value","哈哈哈"))
为匹配的元素集合中的每个元素中移除一个属性(attribute)。
?? ?$("a").removeAttr("href")
移除集合中每个匹配元素上一个,多个或全部样式。
?? ?$("a").removeClass("a1");
为集合中配的元素删除一个属性(property)。
在匹配的元素集合中的每个元素上添加或删除一个或多个样式类取决于这个样式类是否存在或值切换属性。即:
如果存在(不存在)删除(添加)个类
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="jQuery.js"></script>
<style>
p{
width: 100px;
height: 50px;
background-color: darkcyan;
border-radius: 5px;
text-align: center;
line-height: 50px; /* 垂直居中 */
margin: 0 auto; /* 居于浏览器中间 上下为0,左右自动*/
color: #ffffff;
font-size: 20px; /* 字体大小 */
}
.pbtn{
background-color: red;
}
</style>
</head>
<body>
<p>按钮</p>
</body>
<script>
$(function(){
?? ??? ??? ?$("p").bind("mouseover mouseout",function(){
?? ??? ??? ??? ?// toggleClass("pbtn")如果有这个类名就去掉,没有就增加
?? ??? ??? ??? ?$(this).toggleClass("pbtn")
?? ??? ??? ?});
})
</script>
</html>
toggleClass
获取匹配的元素集合中第一个元素的当前值。设置匹配的元素集合中每个元素的值.
主要获取表单元素的值,比如:input、select、textarea
?? ??? ?console.log($("input").val());