jquery通过索引值操作html元素的代码

发布时间:2023-05-04

  eq() :返回带有被选元素的指定索引号的元素。注意:索引号从 0 开头,所以第一个元素的索引号是 0(不是 1)。

  remove(): 移除被选元素,包括所有文本和子节点。

  html():返回或设置被选元素的内容。

  attr():设置或返回被选元素的属性值。如attr(class, aaa time)

  prepend():被选元素的开头(仍位于内部)插入指定内容。

  animationend 事件:在 CSS 动画完成后触发。

  如何在jquery中使用eq()方法可以参考这篇文章https://www.lu0.net/article/59465.htm

  

  

?

  

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

  

30

  

31

  

32

  

33

  

34

  

35

  

36

  

37

  

38

  

39

  

40

  

41

  

42

  

43

  

44

  

45

  

46

  

47

  

48

  

49

  

50

  

51

  

52

  

53

  

54

  

55

  

56

  

57

  

<!DOCTYPE html>

  

<html lang=en>

  

  

<head>

  

<meta charset=UTF-8>

  

<meta name=viewportcontent=width=device-width, initial-scale=1.0>

  

<title>Document</title>

  

<style>

  

.aaa {

  

color: red;

  

animation: mymove 4s

  

}

  

  

@keyframes mymove {

  

25% {

  

font-size: 30px;

  

color: chartreuse

  

}

  

  

50% {

  

color: blue

  

}

  

}

  

</style>

  

</head>

  

  

<body>

  

<div id=person>

  

<div><span id=t1class=time>小明</span></div>

  

<div id=t2><span class=time>小涛</span></div>

  

<div><span class=time>小花</span></div>

  

<div><span class=time>小刚</span></div>

  

<div><span class=time>小狗</span></div>

  

<div><span class=time>小毛</span></div>

  

</div>

  

<script src=jquery-1.7.1.min.js></script>

  

<script>

  

// 1.移除页面上class=time的索引值为2的元素

  

$(.time).eq(2).remove()

  

// 2.设置页面上class=time的索引值为0的元素的内容为9999

  

$(.time).eq(0).html(9999)

  

// 3.设置页面上class=time的索引值为1的元素的class=aaa time

  

$(.time).eq(1).attr(class, aaa time)

  

// 4.隐藏页面上class=time的索引值为4的元素

  

$(.time).eq(4).hide()

  

// 5.往id=person的标签中第一行插入html

  

varname = maidu

  

$(#person).prepend(<div><span class=time id=+ name + >+ name + </span></div>)

  

// 6.动画,当动画结束后去掉class=aaa

  

document.getElementsByClassName(time)[2].addEventListener(animationend, function(e) {

  

this.classList.remove(aaa)

  

})

  

  

</script>

  

</body>

  

  

</html>

  

  

  到此这篇关于jquery通过索引值操作html元素的代码的文章就介绍到这了,更多相关js索引值操作html元素内容请搜索陆零网络以前的文章或继续浏览下面的相关文章希望大家以后多多支持陆零网络!

注册即送1000元现金券