bootstrap-table的一些配置参数[html] view plain copy$('#reportTable').bootstrapTable({ method: 'post', url: '/qStock/AjaxPage', dataType: "json", striped: tru ...
分类:
其他好文 时间:
2017-10-18 17:36:36
阅读次数:
265
总结JS 常用函数 Ajax请求 jquery ajax函数 我自己封装了一个ajax的函数,代码如下: var Ajax = function(url, type success, error) { $.ajax({ url: url, type: type, dataType: 'json', ...
分类:
Web程序 时间:
2017-10-17 12:37:59
阅读次数:
216
$.ajax({ type: "post", dataType:"text", url: "sugController_toAjax", contentType: "application/x-www-form-urlencoded; charset=utf-8", data: "index="+i ...
分类:
Web程序 时间:
2017-10-13 14:03:27
阅读次数:
121
//定义一个公众处理ajax的方法 function handelAjax(url,method,parm,callback) { $.ajax({ url:url, type:method, dataType:'json', data:pram, success:function(data) { ...
分类:
Web程序 时间:
2017-10-13 10:09:53
阅读次数:
191
1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef int DataType; 5 6 //比较器 7 int mycmp(const void * a, const void *b); 8 9 //int (*compar)(const v ...
分类:
编程语言 时间:
2017-10-11 00:34:39
阅读次数:
270
自己用C写的list双向链表头文件 1 #ifndef _LIST_H_ 2 #define _LIST_H_ 3 4 #include <stdlib.h> 5 #include <stdio.h> 6 #include <stdbool.h> 7 8 typedef int DataType; ...
分类:
其他好文 时间:
2017-10-10 22:00:29
阅读次数:
135
添加字段的语法:alter table tablename add (column datatype [default value][null/not null],….); 修改字段的语法:alter table tablename modify (column datatype [default ...
分类:
数据库 时间:
2017-10-10 16:47:54
阅读次数:
149
一、jQuery 实现 ajax 二、jQuery.ajax([options]) 详解 参数说明 -- 回调函数 beforeSend、error、dataFilter、success、complete( 当请求完成之后调用这个函数 ) -- 数据类型 dataType /* 我们必须确保网页服务 ...
分类:
编程语言 时间:
2017-10-10 16:32:47
阅读次数:
222
$('#').click(function () { $.ajax({ type:"get", dataType:"json", url:"#", success:function (msg) { //返回数据处理 console.log(msg); var length = msg.length; ...
分类:
Web程序 时间:
2017-10-08 17:23:31
阅读次数:
167
#include <iostream>#include <string>#include <fstream>#include <sstream>#include <vector>#include <cmath>template <typename DataType>double sigmoid(Da ...
分类:
编程语言 时间:
2017-10-07 16:15:49
阅读次数:
266