jquery hello world

1 jQuery

jQuery是一個js庫,一個js文件,極大地簡化了編程,官網鏈接在這裏,有compressed,uncompressed版本,使用時一樣.

2 hello world

<html>
    <head>
        <title>jquery hello world</title>
        <script type="text/javascript" src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
        <script type="text/javascript">
            $(function()
            {
                $("p").html("hello world");
            });
        </script>
    </head>
    <body>
        <p></p>
    </body>
</html>

jQuery使用時直接從官網引入文件即可,這裏用的是3.4.1版本.

$(function())

$(document).ready(function(){})

的縮寫,這個函數會在DOM加載完成後執行.

$("p")

表示選擇頁面的所有<p>元素,html()可以設置元素的內容.
在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章