JavaScript 測(cè)試 jQuery

2022-05-18 15:36 更新

測(cè)試 JavaScript 框架庫(kù) - jQuery


引用 jQuery

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

為了引用某個(gè)庫(kù),請(qǐng)使用 <script> 標(biāo)簽,其 src 屬性設(shè)置為庫(kù)的 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 對(duì)象,它會(huì)返回 jQuery 對(duì)象,帶有向其添加的 jQuery 功能。

jQuery 允許您通過(guò) CSS 選擇器來(lái)選取元素。

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

JavaScript 方式:

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

等價(jià)的 jQuery 是不同的:

jQuery 方式:

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

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

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

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

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

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


測(cè)試 jQuery

請(qǐng)?jiān)囈幌孪旅孢@個(gè)例子:

實(shí)例

<!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>

嘗試一下 ?

請(qǐng)?jiān)僭囈幌逻@個(gè)例子:

實(shí)例

<!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(yǔ)法)。

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

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


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

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)