js代码
function show(fileId){
$.ajax({
url:'http://localhost:80/show',
dataType:'jsonp',
data:{
'fileId':fileId
},
cache:false,
jsonp:'c...
分类:
Web程序 时间:
2015-01-12 09:19:05
阅读次数:
249
//ajax静态方法-ajax() //常用ajax属性总结 $.ajax({ url:"", async:false, dataType:"jsonp",//jsonp,json,text,html,script,xml data: {name:"John",lo...
分类:
Web程序 时间:
2015-01-11 19:10:13
阅读次数:
208
//好久不用C++许多语法细节都忘记了...费了九牛二虎之力还搞的那么复杂,Anyway,下午把前序遍历给写出来了,还是有点成绩的。。。
#include
#include
using namespace std;
typedef int dataType;
typedef struct BiTree
{
dataType data;
BiTree *lchild;
BiTree *r...
分类:
其他好文 时间:
2015-01-08 18:00:59
阅读次数:
128
//type:"POST", //复杂对象传值用Post, //data: JSON.stringify ({ ids: List }), //JSON.stringify ---must 用来序列化 //dataType: "json"...
分类:
Web程序 时间:
2015-01-08 17:15:02
阅读次数:
145
添加字段的语法:alter table tablename add (column datatype [default value][null/not null],….);修改字段的语法:alter table tablename modify (column datatype [default v...
分类:
数据库 时间:
2015-01-07 16:45:15
阅读次数:
229
#include "stdafx.h"#include using namespace std;typedef int DataType;#define MAXSIZE 5typedef struct{ DataType *base; int front; int rear;}CircleQueue...
分类:
其他好文 时间:
2015-01-07 12:52:25
阅读次数:
154
#include "stdafx.h"#include #include #include #include #include using namespace std;typedef int DataType;struct LNode{ DataType data; struct LNode *ne...
分类:
其他好文 时间:
2015-01-07 12:48:21
阅读次数:
84
#include "stdafx.h"#include using namespace std;typedef int DataType;#define SIZE 100typedef struct { DataType data[SIZE]; int head,tail;}SqQueue;//初始...
分类:
其他好文 时间:
2015-01-07 12:36:22
阅读次数:
131
validate验证在进行异步数据库查询验证的过程中用到了remote这个参数remote里面有url,dataType,data,type等等这几个参数,当data不写的时候默认是当前被验证的字段的值。传值到php文件中,在php文件中处理的时候,返回值为“true”或者"false",返回值需要加引号。以下为一个测..
分类:
Web程序 时间:
2015-01-05 16:53:05
阅读次数:
187
SeqList.h 1 #define ListSize 100 2 3 typedef int DataType; 4 typedef struct { 5 DataType list[ListSize]; 6 int length; 7 }SeqList; 8 9 void ...
分类:
其他好文 时间:
2015-01-04 14:55:28
阅读次数:
269