jQでaddとsliceの方法の使用
6657 ワード
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src = 'jquery-1.10.1.min.js'></script>
<script>
/*
add()
slice() JQ 。
*/
$(function(){
/*
【** **】 , , , 。
$("span").add("div").add("p").add("strong").add("ul li").click(function(){
alert(this.tagName);
}).mouseover(function(){
$(this).css("backgroundColor", 'orange');
}).mouseout(function(){
$(this).css("backgroundColor", 'blue');
})
$("span,div,p,strong,ul li").click(function(){
alert(this.tagName);
}).mouseover(function(){
$(this).css("backgroundColor", 'orange');
}).mouseout(function(){
$(this).css("backgroundColor", 'blue');
})
*/
// [start, end]
$("ul li").slice(1, 4).css("backgroundColor", 'red');
})
</script>
</head>
<body>
<span>span</span>
<div>div</div>
<p>p </p>
<strong>strong </strong>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</body>
</html>