目录
document.getElementById()------>标签对象------>直接就是标签
$(document.getElementById())------>jQuery对象------>可以使用jQuery提供的方法
jQuery(document.getElementById())------>jQuery对象------>可以使用jQuery提供的方法
$ === jQuery
# 如何把jQuery对象转换为标签对象
$()[0]
$("#id")===jQuery("#id")
- classList对象:
-
- classList.add()
- classList.remove()
- classList.containers()
- classList.toggle()
-
- addClass();// 添加指定的CSS类名
- removeClass();// 移除指定的CSS类名
- hasClass();// 判断样式存不存在
- toggleClass();// 切换CSS类名,如果有就移除,没有就添加
$("p").css("color","red"); // 将所有p标签的字体设置为红色
- innerText ------> text()
- innerHTML ------> html()
- value属性
- val()
console.log($("input[name="gender"]:checked").val());
- getAttribute()
- setAttribute()
- removeAttribute()
对于标签上有能看到的属性和自定义属性都用attr
对于返回布尔值的比如checkbox、radio和option的是否被选中都用prop
- let $pEle = $('
'
); - var p = $("
"
); - document.createElement('p');
- $('
'
);