jQuery常用方法

1、addClass() 给元素添加一个类名
removeClass() 给元素删除类名
toggleClass如果没有相应的类就进行添加,有的话就进行删除,相当于切换



	
		
		
	
	
		
		
		
		

2、获取或者设置内容:如果传值相当于设置内容,不传值就是获取内容
html()相当于innerHTML添加内容 获取到代码
text()相当于innerText方法(纯文本,里面的标签不会被解析)获取到的是文本内容
3、css方法 获取或者设置css样式



	
		
	
	
		
		
		
hello_1
hello_2
hello_3
hello_4
hello_5
hello_6
hello_7
hello_8
hello_9
hello_10

4、each jQuery中的循环方法



	
		
	
	
		

5、attr设置和获取属性 removeAttr 删除属性
attr(“要获取的属性”) 只写一个值就是获取属性获取值默认只获取第一个 可以通过循环得到所有的属性
attr(“要设置的属性”,“要设置的属性的值”);值可以传入函数
removeAttr(“要删除的属性名”)



	
		
	
	
		
		
		
		
{noding_1}
{noding_2}
{noding_3}
{noding_4}
{noding_5}
{noding_6}
{noding_7}
{noding_8}
{noding_9}
{noding_10}

6、prop()设置或者获取元素的属性
removeProp()删除属性 和attr应用场景不同 具有true和false属性值的属性最好使用prop()属性



	
		
		
		
		
	
	
		
		
		
		
		
		
		
		
	

7、show() 显示当前元素 hide() 隐藏当前元素
相当于原生JS中的display:block;display:none;

你可能感兴趣的:(jQuery)