jquery教學

TwitterFacebook
Get flash to fully experience Pearltrees
http://webdesign.kerthis.com/jquery/

jQuery 教學 - jQuery Tutorial

jQuery 是一套物件導向式簡潔輕量級的 JavaScript Library 。透過 jQuery 你可以用最精簡少量的程式碼來輕鬆達到跨瀏覽器 DOM 操作、事件處理、設計頁面元素動態效果、AJAX 互動等。 jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. 摘自: http://jquery.com/

20 Must Learn Button Tutorials in jQuery and CSS

http://blueblots.com/tutorials/20-must-learn-button-tutorials-in-jquery-and-css/ Since its release, jQuery has proven its credibility and usefulness in web development. It has helped in making html easier to use and saved a lot of time for the developers. Knowing how to use this program can aid you to create neat animation and special effects for your themes. In other words, using jQuery can make your website niftier and visually dynamic, of course, in a user-friendly way. For our next post, we will showcase 20 Must Learn Button Tutorials in jQuery & CSS .
http://api.jquery.com/css/

.css

Description: Set one or more CSS properties for the set of matched elements. As with the .prop() method, the .css() method makes setting properties of elements quick and easy. This method can take either a property name and value as separate parameters, or a single object of key-value pairs. When using .css() as a setter, jQuery modifies the element's style property. For example, $('#mydiv').css('color', 'green') is equivalent to document.getElementById('mydiv').style.color = 'green' . Setting the value of a style property to an empty string — e.g.

邊做邊學 jQuery 系列 3-jQuery 常用的 Javascript 技巧

http://msdn.microsoft.com/zh-tw/asp.net/dd452439.aspx 邊做邊學 jQuery 系列 3-jQuery 常用的 Javascript 技巧 要正式使用 jQuery 之前,我們先做些基本功課。 【jQuery 初步】 jQuery 架構的主要應用概念是" 由 Selector 取得一個或多個元素組成的群組(Set),然後再串接我們要對群組裡各元素所做的各項動作 "。舉例來說:
jQuery 是一套 JavaScript 的 Library,因此,你必須稍具 JavaScript 的基礎,至少寫過一些 JavaScript 才比較容易上手,並且看得懂後續的教學。jQuery 的核心程式並非包山包海、什麼都可以幫你做,相反地,jQuery 主要是用在 DOM 文件的操作,包含「快速選取元素(Element)」並且「做一些事情」,快速選取元素可以讓你一次選取單一或多個的元素,然後你可以將這些被選取的元素做一些改變,例如隱藏、顯示等等。此外 jQuery 的核心程式還加強了非同步傳輸(AJAX)以及事件(Event)的功能,讓你更容易操作遠端文件及事件。 以上看得出來 jQuery 是針對 JavaScript 內在不足的地方加以增進,你仍然需要自己寫一些程式來完成你需要的各種功能,不同的是,正確地使用了 jQuery 可以讓你的程式碼更精簡、更優雅的表達出來,這在後續的範例中可以看到,更重要的是,應該也會讓你更快速的開發出你要的功能。 或許你會想說,在這個 Web 2.0 的時代,我需要多點漂亮、絢麗的 Widgets 來裝飾我的網站,就像 Yahoo UI 或 ExtJS 提供的那些功能一樣,jQuery 有嗎? http://jsgears.com/thread-63-1-1.html

jQuery 教學 - 基礎篇 - JavaScript 教學、心得分享 - jsGears.com 技術論壇 - AJAX, JavaScript, jQuery, 網站開發, 前端效能優化 - Powered by Discuz!

http://msdn.microsoft.com/zh-tw/asp.net/dd446623.aspx 邊做邊學 jQuery 系列 1-初識 jQuery Web 是當今 Internet 最主要應用方式之一,身為網站開發人員,如何提供使用者流暢的操作感受,是一項重要課題。在 Web 2.0 的風潮中,隨著使用者的操作即時改變網頁介面元素,漸成為使用者期望及認可的主流設計方式;當使用者已習慣於 AJAX 式的即時更新,傳統透過 PostBack 送回伺服器再重新產生網頁的做法,其反應速度的延遲及每次重新載入 HTML 導致的閃動,已不再符合使用者的期待,親和力明顯不足。 要提供使用者較流暢的網頁操作經驗,主要可採取兩種策略。

邊做邊學 jQuery 系列 1-初識 jQuery