摘要:
There is an excellent article named Optimizing JavaScript Code. The authors are software engineers on Gmailand Google chrome.I appreciate the knowledge described in this article and try to repeat it i... 阅读全文
摘要:
In JavaScript, object and array are passed by reference.Sometimes you may come into trouble if you don’t keep this in mind, especial inrecursion.Let’s see an example:First, prepare a JavaS... 阅读全文
摘要:
This article describe the famious issue “function in loop and closure” in JavaScript.The root cause is loop statements (such as for, while) don’t have their own scope.Let’s see... 阅读全文
摘要:
Regular Expression are very important in professional JavaScript.There is a wonderful resource in Mozilla developer center.Two ways to construct a regular expression 1. Literal expression re = /ab+c/g... 阅读全文
摘要:
Reference: jQuerifyBookmarklet, Updated jQuery Bookmarklet and Better, Stronger, Safer jQuerify BookmarkletWhat is jQuerify Bookmarklet?A jQuerify Bookmarklet is a hyperlink that can be dragged into y... 阅读全文
摘要:
Today, when reading an article - A Plugin Development Pattern, i found an interesting plugin - metadata.First, let’s see it in action: <li id="Li1" class='someclass {"item_id": 1, "item_label... 阅读全文
摘要:
In my last article, i use a JSON tool to parse a JSON string, but there will be a JavaScript error:<div style="display: none;" class="initParameters">{ cred: "6B30E9A9E716C370E040E00A193871B8" }... 阅读全文
摘要:
Learning Processing.js - 1Processing.js is an open programming language for people who want to program images, animation, and interactions for the web without using Flash or Java applets. Processing.j... 阅读全文