使用者工具

網站工具


webdesign:javascript

Javascript

apply()

接收不定量參數,並在呼叫參數時傳入不定量參數

function Test(){
    var s =0;
    for(var i=0; i<arguments.length; i++)
        s+=arguments[i];
    return s;
}

function CallTest(){
    return Test.apply(this, arguments);  // 傳入不定量參數
}

alert(CallTest(1, 2, 3)); // 6

Tools

Fiddle

http://jsfiddle.net/

透過各種 Ajax Framework 與 CSS,線上立即顯示結果。

Books & Articles

width, height

網頁原始碼加密

http://www.study-area.org/coobila/tutorial_255.html

escape 函式,將一段資料轉換成 16 位元碼。

unescape() 解密。

jQuery

Books

jQuery UI

jQuery Tools

jmpress.js

a jQuery port of impress.js to build a website on the infinite canvas

https://github.com/shama/jmpress.js

WKRTE - jQuery Rich Text Editor

50 Useful New jQuery Techniques and Tutorials

DataTables

http://www.datatables.net/

產生可自由選擇排序方式的表格。

The Ultimate Showcase of jQuery Lightbox Plugins

邊做邊學 jQuery 系列

Visual jQuery

Mootools

Node.js

Book & Reference

Example

Services

Amazon

Heroku

Windows Azure

Koding

https://koding.com Learn programming or make apps. Hack Ruby, Go, Java, NodeJS, PHP, C, and Python. Install Wordpress, Laravel, Django, and Bootstrap. Play with MySQL, Mongo, and enjoy root access. Sign up now and join the fun!

Misc

ECMAScript 6

LiveScript

http://gkz.github.com/LiveScript/

LiveScript is a language which compiles to JavaScript.

AngularJS

Reference

Framework/Library

Highcharts

webdesign/javascript.txt · 上一次變更: 2018/08/02 17:37 由 sars