jquery 简介


jquery 简介

 

官网:https://jquery.com/

 

 

********************

导入 jquery

 

                       

 

index.html

<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
      xmlns:th="http://www.thymeleaf.org" xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="/jquery/jquery-3.5.1.min.js"></script>
</head>
<script>
    $(function () {
        alert("hello world");
    })
</script>

<body>

</body>
</html>

 

 

********************

$(function() { }) 与 window.onload=function() { }

 

$(function(){}):DOM元素加载完成后,即可执行jquery操作

window.onload:所有DOM及文本、图片等加载完成后,才可执行相关操作

 

$(function(){}):可同时编写多个,都会执行

window.onload:同时编写多个,只会执行最后一个

 

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
      xmlns:th="http://www.thymeleaf.org" xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="/jquery/jquery-3.5.1.min.js"></script>
</head>
<script>
    $(function () {
        alert("hello world");
    });

    $(function () {
        alert("hello world2");
    })
</script>

<body>

</body>
</html>

执行页面,会接连弹出两个提示框

 

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
      xmlns:th="http://www.thymeleaf.org" xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="/jquery/jquery-3.5.1.min.js"></script>
</head>
<script>
    window.onload=function () {
        alert("hello world");
    };

    window.onload=function () {
        alert("hello world2");
    }
</script>

<body>

</body>
</html>

弹出一个提示框:hello world2

 

 

********************

jquery对象 、 DOM对象

 

******************

DOM对象操作

 

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
      xmlns:th="http://www.thymeleaf.org" xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="/jquery/jquery-3.5.1.min.js"></script>
</head>
<script>
    window.onload=function(){
        const domObj = document.getElementById("test");
        const text = domObj.innerText;
        const html = domObj.innerHTML;

        alert(text);
        alert(html);
    }
</script>

<body>
<div id="test">
    你好呀<br>
    <strong>hello world</strong>
</div>
</body>
</html>

 

弹出提示框

                             

                             

 

 

******************

jquery对象操作

 

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"
      xmlns:th="http://www.thymeleaf.org" xmlns:sec="https://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="/jquery/jquery-3.5.1.min.js"></script>
</head>
<script>
    $(function () {
        const jqueryObj=$("#test");

        alert(jqueryObj.text());
        alert(jqueryObj.html());
    })
</script>

<body>
<div id="test">
    你好呀<br>
    <strong>hello world</strong>
</div>
</body>
</html>

 

弹出提示框

                             

                             

 

 

******************

jquery、DOM对象转换

 

<script>
    const jqueryObj=$("#test");
    const domObj=document.getElementById("test");
    
    const domObj2=jqueryObj.get(0);    //将jquery对象转换为dom对象
    const jqueryObj2=$(domObj);        //将dom对象转换为jquery对象
</script>

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值