Ajax学习
第一步、创建 XMLHTTPRequest 对象
为了应对所有的现代浏览器,包括 IE5 和 IE6,请检查浏览器是否支持 XMLHttpRequest 对象。如果支持,则创建 XMLHttpRequest 对象。如果不支持,则创建 ActiveXObject :
var xmlhttp;
if (window.XMLHttpRequest){
// code for...
分类:
Web程序 时间:
2015-04-07 21:49:26
阅读次数:
141
The content and code of this article is referenced from book Pro C#5.0 and the .NET 4.5 Framework by Apress. The intention of the writing is to review...
var?testCombo?=?Ext.create(‘Ext.form.field.ComboBox‘,?{
????????displayField?:?‘name‘,
????????valueField?:?‘code‘,
????????editable?:?false,
????????store...
分类:
Web程序 时间:
2015-04-07 20:17:15
阅读次数:
140
在终端、cmd、编辑器中偶尔会有中文字符出现,Windows下默认的点阵字体「宋体」和等宽英文字符放在一起非常违和。一个解决方法是下载混合字体,比如「Consolas + YAHEI hybrid」,「Source Code Pro + YAHEI hybrid」。但是这些字体组合毕竟有限,如果想用...
分类:
其他好文 时间:
2015-04-07 19:38:42
阅读次数:
352
iOS 开发代码规范1.命名https://github.com/Chinamobo/iOS-Team-Norms/blob/master/CodeStyle.md#naming-basic-principlehttps://github.com/foxsofter/ios-code-styleht...
分类:
移动开发 时间:
2015-04-07 19:13:12
阅读次数:
158
Mac下VIM配置 首先,我们去这里下载MacVim,也可用这个网址:(http://code.google.com/p/macvim/),进入后的界面如下: _______________________________________________________________________ ? Download D...
分类:
系统相关 时间:
2015-04-07 17:55:40
阅读次数:
349
题目大意给出一个无向图,求出在这个图上1到n的所有最短路形成的图的最大流。思路想让大家叠模板也不带这么懒得吧。。
记得开long long就行了。CODE#define _CRT_SECURE_NO_WARNINGS#include
#include
#include
#include
#include <algorith...
分类:
其他好文 时间:
2015-04-07 17:50:24
阅读次数:
127
Code Error Message
0 操作成功完成。
1 功能错误。
2 系统找不到指定的文件。
3 系统找不到指定的路径。
4 系统无法打开文件。
5 拒绝访问。
6 句柄无效。
7 存储控制块被损坏。
8 存储空间不足,无法处理此命令。
9 存储控制块...
分类:
数据库 时间:
2015-04-07 15:38:45
阅读次数:
1039
Many text editors have advanced find (and replace) features. When I’m programming, I like to use an editor with regular expression search and replace....
分类:
其他好文 时间:
2015-04-07 15:05:19
阅读次数:
157
PHP Native Interface (PNI) is a PHP extension that enables PHP code to call and be called by native applications (programs specific to a hardware and operating system platform) and libraries written in other languages such as C, C++ and assembly.....
分类:
Web程序 时间:
2015-04-07 13:53:51
阅读次数:
161