06 2009 档案

摘要: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... 阅读全文
posted @ 2009-06-30 15:49 三生石上(FineUI控件) 阅读(394) 评论(0) 推荐(0) 编辑
摘要: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... 阅读全文
posted @ 2009-06-30 11:39 三生石上(FineUI控件) 阅读(439) 评论(0) 推荐(0) 编辑
摘要: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... 阅读全文
posted @ 2009-06-30 11:10 三生石上(FineUI控件) 阅读(546) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2009-06-29 14:19 三生石上(FineUI控件) 阅读(30) 评论(0) 推荐(0) 编辑
摘要: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... 阅读全文
posted @ 2009-06-26 13:39 三生石上(FineUI控件) 阅读(515) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2009-06-24 14:41 三生石上(FineUI控件) 阅读(14) 评论(0) 推荐(0) 编辑
摘要: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... 阅读全文
posted @ 2009-06-24 13:06 三生石上(FineUI控件) 阅读(858) 评论(0) 推荐(0) 编辑
摘要: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... 阅读全文
posted @ 2009-06-23 16:10 三生石上(FineUI控件) 阅读(1864) 评论(1) 推荐(0) 编辑
摘要: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" }... 阅读全文
posted @ 2009-06-23 13:26 三生石上(FineUI控件) 阅读(2083) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2009-06-23 10:18 三生石上(FineUI控件) 阅读(14) 评论(0) 推荐(0) 编辑
摘要: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... 阅读全文
posted @ 2009-06-22 15:49 三生石上(FineUI控件) 阅读(408) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2009-06-22 14:45 三生石上(FineUI控件) 阅读(8) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2009-06-18 14:52 三生石上(FineUI控件) 阅读(7) 评论(0) 推荐(0) 编辑
摘要:First, i want to add options to Tabs constructor like this: var tabs = $("div.tabs").tabs({ "openEvent": "mouseover", "disabled": [1, 2], "current": 3 }); These options are borrowed from jQuery UITabs... 阅读全文
posted @ 2009-06-18 14:49 三生石上(FineUI控件) 阅读(722) 评论(0) 推荐(0) 编辑
摘要:I have said that i dislike jQuery UI’s unified API, so i want toget the instance of the component after invoke like this: $(function() { var tabs = $("div.tabs").tabs(); // Note: Now tabs is the... 阅读全文
posted @ 2009-06-17 15:55 三生石上(FineUI控件) 阅读(623) 评论(0) 推荐(0) 编辑
摘要:Just as the auther of jQuery Toolssaid:jQuery UI has a so-called “unified API” which uses the following syntaxfor invoking methods://callselectmethodfortabs$("ul.example").tabs("select",1)... 阅读全文
posted @ 2009-06-17 13:31 三生石上(FineUI控件) 阅读(1128) 评论(0) 推荐(0) 编辑
摘要:1. How to judge element is visible ? if($(".nav").is(":visible")) { // This element is visible }This filter is very power, for example: <div style="display: none;"> <div id="test">This ele... 阅读全文
posted @ 2009-06-16 14:34 三生石上(FineUI控件) 阅读(454) 评论(0) 推荐(0) 编辑
摘要:Today, Flyer notify me that the page is loading twice, very strange.And this is my step to solve the problem.1. Open firebugand discovertwo requests of home.do page (HTTP action - GET).2. Open HTTPWat... 阅读全文
posted @ 2009-06-15 16:20 三生石上(FineUI控件) 阅读(395) 评论(0) 推荐(1) 编辑
摘要:There are many articles about jQuery tips and tricks on the internet.I am very happy to have so many resources for reference, and i will make my ownexamples in order to learn these tips and tricks for... 阅读全文
posted @ 2009-06-15 14:23 三生石上(FineUI控件) 阅读(692) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2009-06-11 16:22 三生石上(FineUI控件) 阅读(7) 评论(0) 推荐(0) 编辑
摘要:The observer pattern (a subset of the asynchronous publish/subscribe pattern) is a software design pattern in which an object, called the subject, maintains a list of its dependents, called observers,... 阅读全文
posted @ 2009-06-10 16:36 三生石上(FineUI控件) 阅读(907) 评论(0) 推荐(0) 编辑
摘要:http://wiki.developers.facebook.com/index.php/Trying_Out_Facebook_ConnectFaceBook Connect is used to quickly integrate your site with Facebook account.I look into http://www.somethingtoputhere.com/the... 阅读全文
posted @ 2009-06-05 10:11 三生石上(FineUI控件) 阅读(605) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2009-06-03 18:12 三生石上(FineUI控件) 阅读(7) 评论(0) 推荐(0) 编辑
摘要:The basic steps to create a qooxdoo application is as follows:Select a layout (VBox, HBox, Grid, Dock….)Create a container from the layout. (Usually Composite)Add the container to the applicati... 阅读全文
posted @ 2009-06-02 10:44 三生石上(FineUI控件) 阅读(529) 评论(1) 推荐(0) 编辑
摘要:How to create a simple table?There are two importent things exist in qooxdoo table class (qx.ui.table.Table) - Model and Selection.The model represents the columns anddata of the table, and the select... 阅读全文
posted @ 2009-06-01 16:41 三生石上(FineUI控件) 阅读(371) 评论(0) 推荐(0) 编辑
摘要:qooxdoo is a comprehensive and innovative Ajax application framework. Leveraging object-oriented JavaScript allows developers to build impressive cross-browser applications. No HTML, CSS nor DOM knowl... 阅读全文
posted @ 2009-06-01 14:32 三生石上(FineUI控件) 阅读(582) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示