当前位置:Gxlcms > JavaScript > js常用属性实例分享

js常用属性实例分享

时间:2021-07-01 10:21:17 帮助过:3人阅读

本文主要和大家分享js常用属性实例,首先是几个比较容易常见的属性,希望能帮助到大家。


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


$("p").dblclick(function() {

$(this).css("color", "green");

})

//当鼠标指针穿过元素

$("p").mouseenter(function() {

$(this).text("鼠标指针穿过元素");

})

//鼠标指针离开元素

$("p").mouseleave(function() {

$(this).text("鼠标指针离开元素");<br>})

//鼠标指针移动到元素上,并按下鼠标按键

$("p").mousedown(function() {

$(this).text("鼠标指针移动到元素上方,并按下鼠标按键");

})

//在元素上松开鼠标按钮时

$("p").mouseup(function() {

$(this).text("在元素上松开鼠标按钮时");

})

//元素获得焦点

$(":text").focus(function() {

$(this).val("元素获得焦点");

})

//元素失去焦点

$(":text").blur(function() {

$(this).val("元素失去焦点");

})

  插入方法:




1

2

3

4

5

6

7

8

9

10

11

12


var i = $("#ul1 li").length;

//append末尾插入

$("#btn1").click(function() {

i++;

$("#ul1").append("<li>add" + i + "</li>")

})

//prepend头部插入

var j = 1;

$("#btn2").click(function() {

j--;

$("#ul1").prepend("<li>add" + j + "</li>")

})<br>before()//元素之前<br>after()//元素之后

  移除方法




1

2

3


$("#btn4").click(function

人气教程排行