9.jQuery
jQuery库,里面存在大量的JavaScript函数
获取jQuery
选择器
<script>
//标签
document.getElementsByName()
//id
document.getElementById()
//类
document.getElementsByClassName()
//jquery CSS中的所有选择器都能用
$('p').click()//标签选择器
$('#id1').click()//id选择器
$('class1').click()//class选择器
</script>
事件
鼠标事件,键盘事件,其他事件
操作DOM
节点文本操作
$('#test-ul li[name=python]').text()//获得值
$('#test-ul li[name=python]').text('设置值')//设置值
$('#test-ul').html()//获得值
$('#test-ul').html('<strong>123</strong>')//设置值
css操作
$('#test-ul li[name=python]').css("color","red")
元素的显示和隐藏本质:display=none
$('#test-ul li[name=python]').show()//显示
$('#test-ul li[name=python]').hide()//隐藏