初识jQuery及公式

jQuery

JavaScript
jQuery库,里面存在大量的javascript函数

获取jQuery

初识jQuery及公式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <!--cdn引入-->
<!--    <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>-->
    <script src="lib/jquery-3.6.0.js"></script>
</head>
<body>
<!--公式:$(selector).action()-->
<a href="" id="text-jquery">点我</a>

<script>
    document.getElementById('id');

    //选择器就是css的选择器
    $('#test-jquery').click(function () {
        alert('hello, jQuery');
    })
</script>
</body>
</html>
上一篇:手提式斜切锯的全球与中国市场2022-2028年:技术、参与者、趋势、市场规模及占有率研究报告


下一篇:JavaScript(九)闭包2