JavaScript 測試 jQuery

2022-05-18 15:36 更新

測試 JavaScript 框架庫 - jQuery


引用 jQuery

如需測試 JavaScript 庫,您需要在網(wǎng)頁中引用它。

為了引用某個庫,請使用 <script> 標(biāo)簽,其 src 屬性設(shè)置為庫的 URL:

引用 jQuery

<!DOCTYPE html>
<html>
    <head>
        <script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js" rel="external nofollow" rel="external nofollow" rel="external nofollow" ></script>
    </head>
    <body>
    </body>
</html>


jQuery 描述

主要的 jQuery 函數(shù)是 $() 函數(shù)(jQuery 函數(shù))。如果您向該函數(shù)傳遞 DOM 對象,它會返回 jQuery 對象,帶有向其添加的 jQuery 功能。

jQuery 允許您通過 CSS 選擇器來選取元素。

在 JavaScript 中,您可以分配一個函數(shù)以處理窗口加載事件:

JavaScript 方式:

function myFunction(){
    var obj=document.getElementById("h01");
    obj.innerHTML="Hello jQuery";
}
onload=myFunction;

等價的 jQuery 是不同的:

jQuery 方式:

function myFunction(){
    $("#h01").html("Hello jQuery");
}
$(document).ready(myFunction);

上面代碼的最后一行,HTML DOM 文檔對象被傳遞到 jQuery :$(document)。

當(dāng)您向 jQuery 傳遞 DOM 對象時,jQuery 會返回以 HTML DOM 對象包裝的 jQuery 對象。

jQuery 函數(shù)會返回新的 jQuery 對象,其中的 ready() 是一個方法。

由于在 JavaScript 中函數(shù)就是變量,因此可以把 myFunction 作為變量傳遞給 jQuery 的 ready 方法。

lamp jQuery 返回 jQuery 對象,與已傳遞的 DOM 對象不同。
jQuery 對象擁有的屬性和方法,與 DOM 對象的不同。
您不能在 jQuery 對象上使用 HTML DOM 的屬性和方法。


測試 jQuery

請試一下下面這個例子:

實例

<!DOCTYPE html>
<html>
<head>
<script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js" rel="external nofollow" rel="external nofollow" rel="external nofollow" ></script>
<script>
function myFunction(){
    $("#h01").html("Hello jQuery")
}
$(document).ready(myFunction);
</script>
</head>
<body>
    <h1 id="h01"></h1>
</body>
</html>

嘗試一下 ?

請再試一下這個例子:

實例

<!DOCTYPE html>
<html>
<head>
<script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js" rel="external nofollow" rel="external nofollow" rel="external nofollow" ></script>
<script>
function myFunction(){
    $("#h01").attr("style","color:red").html("Hello jQuery")
}
$(document).ready(myFunction);
</script>
</head>
<body>
    <h1 id="h01"></h1>
</body>
</html>

嘗試一下 ?

正如您在上面的例子中看到的,jQuery 允許鏈接(鏈?zhǔn)秸Z法)。

鏈接(Chaining)是一種在同一對象上執(zhí)行多個任務(wù)的便捷方法。

需要學(xué)習(xí)更多內(nèi)容嗎?W3Cschool 為您提供了非常棒的 jQuery 教程


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號