发布时间:2014-07-03 16:05:09
1. [代码]常用对象的属性和方法 javascript为我们提供了一些非常有用的常用内部对象和方法。用户不需要用脚本来实现这些功能。这正是基于对象编程的真正目的。 在javascript提供了string(字符串)、math(数值计算)和Date(日期)三种对象和其它一些相关的方法。从而为编程人员快速开发强大.........【阅读全文】
发布时间:2014-07-03 15:49:13
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-03 15:45:58
1. [代码][JavaScript]代码 JavaScript函数调用规则一(1)全局函数调用:function makeArray( arg1, arg2 ){ return [this , arg1 , arg2 ];}这是一个最常用的定义函数方式。相信学习JavaScript的人对它的调用并不陌生。调用代码如下:makeArray('one', 'two');// => [ window, .........【阅读全文】
发布时间:2014-07-03 15:38:14
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-02 16:09:13
许久没有分享代码了,把这段时间写的一个Java操作Blob字段,有日子没写Java了,就当作笔记记录一下。1. [代码][Java]代码 跳至 [1] [全屏预览]package com.wanmei.meishu;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.FileReader;import java.io.InputStream;impo.........【阅读全文】