码迷,mamicode.com
首页 >  
搜索关键字:cti    ( 37597个结果
urllib与urllib的区别
urllib 和urllib2都是接受URL请求的相关模块,但是提供了不同的功能.两个最显著的不同如下 urllib2 can accept a Request object to set the headers for a URL request,urllib accepts only a URL ...
分类:Web程序   时间:2017-04-10 19:14:15    阅读次数:184
Jquery使用ajax参数详解
记录一下Jquery使用ajax(post.get及参数详解) 1、get: 2.post: 3、参数解释 (1)type: 请求方式,默认为GET。一般只用到“GET”,“POST”;类型:string (2)url:请求的地址;类型:string (3)async:默认true,true-请求为 ...
分类:Web程序   时间:2017-04-10 18:39:20    阅读次数:152
二叉树
<?php //二叉树的遍历 class Node{ public $value; public $left; public $right; } //先序遍历 根节点 >左节点 >右节点 function preorder ($root) { $stack = array(); array_push ...
分类:其他好文   时间:2017-04-10 18:30:29    阅读次数:190
Omi框架学习之旅 - 插件机制之omi-router及原理说明
先来看看官网的介绍吧:https://github.com/AlloyTeam/omi/tree/master/plugins/omi-router 其实我推荐直接看官网的介绍。我所写的,主要给个人做的笔记。也许看的get不到点吧。所以强烈看官网 文档:https://alloyteam.githu ...
分类:其他好文   时间:2017-04-10 18:29:31    阅读次数:253
js页面埋点
原文地址:http://sinoteam.blog.51cto.com/9115640/1562018 页面埋点的作用,其实就是用于流量分析。而流量的意思,包含了很多:页面浏览数(PV)、独立访问者数量(UV)、IP、页面停留时间、页面操作时间、页面访问次数、按钮点击次数、文件下载次数等。而流量分析 ...
分类:Web程序   时间:2017-04-10 16:58:36    阅读次数:361
使用cxf创建webservice 出现timeOut的问题,设置spring超时时间
1. 需要指定http-conf的命名空间:xmlns:http-conf="http://cxf.apache.org/transports/http/configuration" 2. 指定模式位置: http://cxf.apache.org/transports/http/configura ...
分类:编程语言   时间:2017-04-10 16:44:22    阅读次数:658
JS字典 Dictionary类
字典 Dictionary类 /*字典 Dictionary类*/ function Dictionary() { this.add = add; this.datastore = new Array(); this.find = find; this.remove = remove; this.s... ...
分类:Web程序   时间:2017-04-10 16:40:26    阅读次数:568
jsp标签、 项目全路径引用${ctx}
请根据自己的需要选择以下标签。 ...
分类:Web程序   时间:2017-04-10 14:22:28    阅读次数:188
js-新闻无缝滚动
HTML部分: CSS部分: JS部分: ...
分类:Web程序   时间:2017-04-10 13:16:57    阅读次数:212
百度富文本赋值
$(function(){ var content =$('#daily_content').val(); //判断ueditor 编辑器是否创建成功 ue.addListener("ready", function () { // editor准备好之后才可以使用 ue.setContent(co ...
分类:其他好文   时间:2017-04-10 13:06:24    阅读次数:141
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!