发布时间:2014-07-09 16:12:58
刚开始我认为可以像ajax 那样获取到数据然后通过ajax 发送请求,后来发现浏览器为了客户端的安全默认并没有给javascript 这个权限。这个方法当然是行不同了。我看了好像开源的上传图片原理,当然大部分是flash。但是为了方便使用js的也不少。 原理都是使用iframe 上传,在from标签里面有个属性 和a 标签一样 tar.........【阅读全文】
发布时间: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.........【阅读全文】