$.ajax({ type: 'POST', url: 'server/login.ashx', dataType: "json", data: { ...
分类:
Web程序 时间:
2014-11-07 18:22:00
阅读次数:
130
2013-12-07 19:15:29|分类:Web前端|标签:html|举报|字号订阅$.ajax({type: "post",url: "index.php",data: "id="+uid,dataType:"json",success : function(){alert(1);},erro...
分类:
Web程序 时间:
2014-11-07 09:45:35
阅读次数:
254
#include #include #include using namespace std;typedef char DataType;typedef struct BiTNode{ DataType data; struct BiTNode *lchild,*rchild;}BITNode;ty...
分类:
其他好文 时间:
2014-11-07 00:55:39
阅读次数:
150
#include
#define MaxStackSize 100
typedef int DataType;
int len,x;
#include"SeqStack.h"
int main()
{
SeqStack myStack;
int i,n,m;
StackInitiate(&myStack);
for(i=0;i
StackPush(&myStack,i+1,...
分类:
编程语言 时间:
2014-11-04 17:37:40
阅读次数:
526
学习数据结构,一直对二叉树不了解,对指针的调用一知半解。这二天学二叉树,搞懂了一点点,先写出代码,以后再边学习边来改进。
#include
#include
typedef char DataType;
typedef struct node
{
DataType data;
struct node *lchild;
struct node *rchild;
...
分类:
其他好文 时间:
2014-11-02 12:33:39
阅读次数:
307
Oracle11g新特性之--虚拟列(VirtualColumn)Oracle11G虚拟列VirtualColumn介绍Oracle11G在表中引入了虚拟列,虚拟列是一个表达式,在运行时计算,不存储在数据库中,不能更新虚拟列的值。定义一个虚拟列的语法:column_name[datatype][GENERATEDALWAYS]AS[expression][VIRTUAL]..
分类:
数据库 时间:
2014-10-31 19:21:31
阅读次数:
236
$.ajax({ url: "a.xml", dataType: "xml", type: "GET", error: function(xml) {alert("error");}, success: function(xml) { $(xml).find("tag").each(...
分类:
Web程序 时间:
2014-10-31 11:35:16
阅读次数:
109
js代码:
?$.ajax({????
????????async:false,????
????????url:?"url",??//?跨域URL???
????????type:?‘GET‘,????
????????dataType:?‘jsonp‘,??
??...
分类:
Web程序 时间:
2014-10-30 15:35:55
阅读次数:
148
//jquery部分的代码 1 $.ajax({ 2 type:'GET', 3 url:"http://192.168.0.224/jsonp.php", 4 data:"", 5 dataType:'jsonp', 6 ...
分类:
Web程序 时间:
2014-10-29 14:36:43
阅读次数:
116
DataType A primitive OpenCV data type is one of unsigned char, bool,signed char, unsigned short, signed short, int, float, double, or a tuple of value...
分类:
其他好文 时间:
2014-10-28 21:34:09
阅读次数:
369