jQuery語法簡介

2021-06-22 17:55:48 字數 516 閱讀 9836

jquery 語法是為 html 元素的選取編制的,可以對元素執行某些操作。

基礎語法是:$(selector).action()

$(this).hide() - 隱藏當前元素

$("p").hide() - 隱藏所有段落

$(".test").hide() - 隱藏所有 class="test" 的所有元素

$("#test").hide() - 隱藏所有 id="test" 的元素

您也許已經注意到在我們的例項中的所有 jquery 函式位於乙個 document ready 函式中:

$(document).ready(function());
這是為了防止文件在完全載入(就緒)之前執行 jquery **。

如果在文件沒有完全載入之前就執行函式,操作可能失敗。

下面是測試**

-- this is a paragraph.

this is another paragraph.

----

jQuery使用 jQuery語法

今天我們就來看一下jquery語法。通過 jquery,可以選取 selector html 元素,並對它們執行 操作 actions 基礎語法 selector action 美元符號 定義 jquery 選擇符 selector 查詢 和 查詢 html 元素 jquery 的 action 執...

jQuery教程 一 jquery語法

jquery 語法是為 html 元素的選取編制的,可以對元素執行某些操作。它的基礎語法是 selector action 其中 例如 this hide 隱藏當前元素 p hide 隱藏所有段落 test hide 隱藏所有 class test 的所有元素 test hide 隱藏所有 id t...

jQuery簡介 引入

什麼是jquery?是乙個js 的框架 可以讓程式設計師寫的更少但做的更多,此框架本身就是使用js寫的 jquery優勢 簡化js 可以像css一樣獲取元素,可以直接修改頁面樣式 css 解決相容性問題 jquery的引入 因為jquery就是js 所以引入方式和普通js檔案一樣 符是jquery的...