1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//抓取香蕉的「下一個」鳳梨
$("button").click(function(){
$(".banana").next().css("background-color","red");
});
//抓取香蕉的「前一個」蘋果
$("button").click(function(){
$(".banana").prev().css("background-color","red");
});
//抓取蘋果「之後的」全部
$("button").click(function(){
$(".apple").nextAll().css("background-color","red");
});
//抓取鳳梨「之前的」全部
$("button").click(function(){
$(".pineapple").prevAll().css("background-color","red");
});
//抓取從蓮霧到蘋果「之間的」全部
$("button").click(function(){
$(".waxapple").prevUntil(".apple").css("background-color","red");
});
//抓取從香蕉到蓮霧「之間的」全部
$("button").click(function(){
$(".banana").nextUntil(".waxapple").css("background-color","red");
});
|