in

SDT Community Server

SDT Forums, Blogs, Photos server.

Floating Heart

No description is bad.

Browse by Tags

All Tags » JavaScript (RSS)
  • MochaUI

    http://mochaui.com/ http://mochaui.com/demo/ MochaUI is a web applications user interface library built on the Mootools JavaScript framework. Uses Web Applications Web Desktops Web Sites Widgets Standalone Windows and Modal Dialogs Getting Started Download the latest stable release. Upload the files to your server. If your server has PHP installed you can use mocha.js.php to concatenate your source files. Otherwise use mocha.js in your header instead or individually list the source files you are...
    Posted Sep 28 2008, 12:04 PM by wicky with | with no comments
    Filed under: ,
  • WebToolkit.Info

    http://www.webtoolkit.info 一个非常好的网站,有一些有用的代码. Javascript trim Javascript sprintf Javascript url decode, encode Javascript MD5 Javascript SHA-1 Javascript SHA-256 Javascript CRC32 Javascript base64 encoding Javascript UTF-8 AJAX file upload Scrollable HTML table Javascript context menu Sortable HTML table Javascript drag and drop Javascript custom cursor Javascript pie menu CSS drop shadow CSS clearfix CSS vertical align CSS centered layout
    Posted Apr 09 2008, 05:57 PM by wicky with | with no comments
    Filed under: ,
  • JavaScript的BASE64

    http://www.bccn.net/Article/web/javascript/jszl/200703/4535.html 原帖及讨论: http://bbs.bc-cn.net/dispbbs.asp?boardid=15&id=107182 /** * 我在网上看到过很多BASE64的JavaScript算法,都觉得不满意,于是自己写了一个,在这里分享一下。 * 我的代码在质量的效率都较高,没有一些冗余的操作。总体来讲我觉得非常不错。 * 如果大家有什么不懂的地方可以问我。 */ var BASE64={ /** * 此变量为编码的key,每个字符的下标相对应于它所代表的编码。 */ enKey: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/', /** * 此变量为解码的key,是一个数组,BASE64的字符的ASCII值做下标,所对应的就是该字符所代表的编码值。 */ deKey: new Array( -1, -1, -1, -1, -1, -1, -1, -1...
    Posted Apr 09 2008, 08:25 AM by wicky with | with no comments
    Filed under: ,
  • IE7 no longer allows the window.opener trick to bypass the window.close prompt?

    From IE7 release notes: http://msdn2.microsoft.com/en-us/ie/aa740486.aspx Functionality Removed and Changed in Internet Explorer 7 Offline Favorites --Offline Favorites and Scheduled Offline Favorites have been removed from Internet Explorer 7. Internet Explorer supports RSS feeds, which provide scheduled updates to web content and offline reading of this content. For more information about RSS feeds, read the RSS Blog . Scriptlets --Internet Explorer 7 disables Dynamic HTML (DHTML) scriptlets by...
    Posted Jul 25 2007, 11:41 AM by wicky with | with no comments
    Filed under:
  • LightBox JS

    http://www.joy100.com/article.asp?id=120 最近很容易可以看到這個效果,也就是當您點選網頁中的圖片或連結時,背景會立即變暗並且出現 Loading… 然後跳出一個美美的方框顯示圖片或網頁,這種效果就叫做 Lightbox,底下收集了一些許多人開發或修改的 Lightbox,通常都會有 Demo,看個人喜好選擇囉。 ‧ Lightbox JS 典型也是最常見的一個,目前也出了 2.0 版,不過似乎只能顯示圖片而已。 ‧ ThickBox 這個也是很常見,可以顯示圖片、網頁,並且可指定方框的大小,推薦。 ‧ Greased Lightbox 提供裝在瀏覽器的擴充套件,平常看圖片時就會有 Lightbox 效果。 . GreyBox 這個就厲害了,除了可以用於圖片和網頁外、連 flash、影片都可以顯示在 Lightbox 彈出的方框裡面。 ‧ Lightbox Gone Wild! 也是可以顯示網頁、圖片,效果還不錯。
    Posted Jul 10 2007, 06:13 PM by wicky with | with no comments
    Filed under:
  • JavaScript, We Hardly new Ya

    http://yuiblog.com/blog/2006/11/13/javascript-we-hardly-new-ya/ JavaScript is a prototypal language, but it has a new operator that tries to make it look sort of like a classical language. That tends to confuse programmers, leading to some problematic programming patterns. You never need to use new Object() in JavaScript. Use the object literal {} instead. Similarly, don’t use new Array() , use the array literal [] instead. Arrays in JavaScript work nothing like the arrays in Java, and use of the...
    Posted Jun 23 2007, 04:26 PM by wicky with | with no comments
    Filed under:
  • Create Advanced Web Applications With Object-Oriented Techniques

    Online: http://msdn.microsoft.com/msdnmag/issues/07/05/JavaScript/default.aspx?loc=en#S6 Or download attached pdf.
    Posted Jun 23 2007, 04:18 PM by wicky with | with 1 comment(s)
    Filed under:
  • AJAX入门之深入理解JavaScript中的函数

    概述 函数是进行模块化程序设计的基础,编写复杂的Ajax应用程序,必须对函数有更深入的了解。JavaScript中的函数不同于其他的语言,每个函数都是作为一个对象被维护和运行的。通过函数对象的性质,可以很方便的将一个函数赋值给一个变量或者将函数作为参数传递。在继续讲述之前,先看一下函数的使用语法: function func1(…){…} var func2=function(…){…}; var func3=function func4(…){…}; var func5=new Function(); 这些都是声明函数的正确语法。它们和其他语言中常见的函数或之前介绍的函数定义方式有着很大的区别。那么在JavaScript中为什么能这么写?它所遵循的语法是什么呢?下面将介绍这些内容。 认识函数对象(Function Object) 可以用function关键字定义一个函数,并为每个函数指定一个函数名,通过函数名来进行调用。在JavaScript解释执行时,函数都是被维护为一个对象,这就是要介绍的函数对象(Function Object)。 函数对象与其他用户所定义的对象有着本质的区别,这一类对象被称之为内部对象...
    Posted Jun 21 2006, 08:36 PM by wicky with | with 2 comment(s)
    Filed under:
  • Google Web Toolkit - Build AJAX apps in the Java language

    http://code.google.com/webtoolkit/ Google Web Toolkit (GWT) is a Java software development framework that makes writing AJAX applications like Google Maps and Gmail easy for developers who don't speak browser quirks as a second language. Writing dynamic web applications today is a tedious and error-prone process; you spend 90% of your time working around subtle incompatabilities between web browsers and platforms, and JavaScript's lack of modularity makes sharing, testing, and reusing AJAX components...
    Posted May 18 2006, 06:41 PM by wicky with | with no comments
    Filed under: ,
  • 面向.NET开发人员的Ajax 技术平台策略

    面向.NET开发人员的Ajax 技术平台策略 小气的神 (ccBoy) 2006.02.15 在这里我将试图考察一下目前.NET平台的下的Ajax框架,我也试图从中总结出来一种方法,使得你可以在众多基于.NET平台的Ajax框架和工具包中找到你所合适的一种,同时也希望你在考察、预研和使用这些流行的这些Ajax-NET 的框架时,做得理性和有的放矢。 我想,文章的方法会给目前使用Ajax的.NET用户带来帮助,从而提高你在.NET平台下使用Ajax的体验。为什么这么说,因为最近我的一个客户(应该是一些客户)的研发主管对我说,我们对Atlas 非常兴趣,想了解更多一些相关的内容和如何开始看待Atlas,因为下个月会来一个Atlas的专家和我们交流。。。。因为我知道这个主管手上掌握着一个Ajax架构的业务应用,目前在考虑从.NET v1.1迁移到.NET v2.0,Atlas能在怎样的程度上帮忙他或他的Team?我没有说太多,因为心里我有些吃惊,目前的他们的架构应用Atlas 可能并不是一个明智的选择,当然这个担心基于我目前对Atlas的理解。 我列举和讨论的Ajax-NET的框架和工具包括...
  • AJAX Magazine: Ajax and .NET

    AJAX Magazine: Ajax and .NET http://ajax.phpmagazine.net/ajax_and_net/ Everything about AJAX...
  • Comparison of AJAX frameworks

    Read it online or download attached file. Comparison of AJAX frameworks
    Posted Mar 09 2006, 11:05 AM by wicky with | with no comments
    Filed under: ,
Copyright SDT, 2006-2009. All rights reserved.