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
|
$("li").click(function(){
//抓取元素的文字
let targetName = $(this).text();
//判斷文字是否為“蘋果”
if( targetName == "蘋果" ){
$(".item-price").text("$20");
//判斷文字是否為“香蕉”
}else if( targetName == "香蕉" ){
$(".item-price").text("$18");
//判斷文字是否為“鳳梨”
}else if( targetName == "鳳梨" ){
$(".item-price").text("$23");
//若以上都不是就...
}else{
$(".item-price").text("賣完囉");
}
});
|