AJAX 學習筆記–$的用法

來源:互聯網
上載者:User
javascript 是物件導向的語言,這裡的對象就是不同的function

var jQuery = window.jQuery = window.$ = function(selector, context)

{

// ...

// other internal initialization code goes here

};

You need to know that jQuery, window.jQuery, window.$ or simply $ can be used interchangeably, because as the declaration stated in the code block above tells us, it refers to the same object in memory.

$僅僅是一個標識符而已,在許多javascript架構中並用來指向某些主要的類,在我們自己的代碼中並不推薦使用。
[example]var $ = jQeury;[/example]

$,是指prototype定義的一類方法

$("id") 得到的是頁面id為"id"的元素
$F("id") 得到的是頁面id為"id"的元素的值,這是唯讀,不可寫

 

$() 方法是在DOM中使用過於頻繁的 document.getElementById() 方法的一個便利的簡寫,就像這個DOM方法一樣,這個方法返回參數傳入的id的那個元素。

 

比起DOM中的方法,這個更勝一籌。你可以傳入多個id作為參數然後 $() 返回一個帶有所有要求的元素的一個 Array 對象

 

$F()方法是另一個非常受歡迎的簡寫。它可以返回任何輸入表單控制項的值,如文字框或下拉框。 這個方法可以傳入元素的id或者元素自己。

 

資料來源:學網(www.xue5.com),原文地址:http://www.xue5.com/itedu/200802/102501.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.