发布时间:2014-07-08 15:59:47
1. [代码][JavaScript]代码 /*! * jLim Core * * jLim is a small JavaScript base code. It can be used to built your own * JavaScript library or framework. * * @version 0.1.1 * @author Victor Villaverde Laan * @link .........【阅读全文】
发布时间:2014-07-08 15:56:33
1. [代码][JavaScript]代码 //javascript Object: ajax Object//Created By RexLeefunction Ajax(url,data){ this.url=url; this.data=data; this.browser=(function(){ if(navigator.userAgent.indexOf(".........【阅读全文】
发布时间:2014-07-08 15:53:13
1. [代码][JavaScript]代码 JavaScript函数调用规则一(1)全局函数调用:function makeArray( arg1, arg2 ){ return [this , arg1 , arg2 ];}这是一个最常用的定义函数方式。相信学习JavaScript的人对它的调用并不陌生。调用代码如下:makeArray('one', 'two');// => [ window, 'one', .........【阅读全文】
发布时间:2014-07-08 15:44:16
1. [代码]tmpl.js // Simple JavaScript Templating// John Resig - http://ejohn.org/ - MIT Licensed(function() {var cache = {};this.tmpl = function tmpl(str, data) {// Figure out if we're getting a template, or if we need to// load the template - and be sure to cache the re.........【阅读全文】
发布时间:2014-07-07 17:23:11
1. [文件] webtoolkit.md5.js ~ 7KB /**** MD5 (Message-Digest Algorithm)* http://www.huiyi8.com/webyuanma/***/ var MD5 = function (string) { function RotateLeft(lValue, iShiftBits) {return (lValue<<iShiftBits) | (lValue>>>(32-iShiftBits));} f.........【阅读全文】