举个例子:普通B/S模式(同步)AJAX技术(异步)同步:提交请求->等待服务器处理->处理完毕返回 这个期间客户端浏览器不能干任何事异步: 请求通过事件触发->服务器处理(这时浏览器仍然可以作其他事情)->处理完毕------------------------------------------...
分类:
其他好文 时间:
2014-08-01 15:46:01
阅读次数:
162
这是word Dfadf 发的发 阿迪发的发 带到
分类:
其他好文 时间:
2014-08-01 13:11:31
阅读次数:
105
功能说明://取得汉字的第一个字母function GetPYIndexChar( hzchar:string):char;begincaseWORD(hzchar[1])shl8+WORD(hzchar[2])of$B0A1..$B0C4 : result:='A';$B0C5..$B2C0 : ...
分类:
其他好文 时间:
2014-08-01 12:56:41
阅读次数:
174
功能说明://取得汉字的第一个字母function GetPYIndexChar( hzchar:string):char;begincaseWORD(hzchar[1])shl8+WORD(hzchar[2])of$B0A1..$B0C4 : result:='A';$B0C5..$B2C0 : ...
分类:
其他好文 时间:
2014-08-01 12:52:51
阅读次数:
223
Description:Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".Clarification:What...
分类:
其他好文 时间:
2014-08-01 04:38:31
阅读次数:
183
题目:Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "ad....
分类:
编程语言 时间:
2014-08-01 02:20:41
阅读次数:
236
ssh "ps aux | grep keyword| grep -v grep | awk '{print \$2}' | xargs kill"ssh可以远程执行命令. 格式也很简单, 命令后面, "" 或 '' 中添加 你想执行的命令.直观的感觉应该是:ssh "awk '{print $2}...
分类:
其他好文 时间:
2014-07-31 23:38:00
阅读次数:
268
Given a 2D board and a word, find if the word exists in the grid.
The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those horizontally or vertically neighboring. The same letter cell may not be used more th...
分类:
其他好文 时间:
2014-07-31 17:16:57
阅读次数:
221
注意:不一定是一分为2 1 package leetcode; 2 3 import java.util.Set; 4 5 public class WordBreak11 { 6 public boolean wordBreak(String s, Set dict) { 7 ...
分类:
其他好文 时间:
2014-07-31 16:11:16
阅读次数:
171
对于国内的在线PDF转换器平台,我们可以发现这样一个特点:大部分在线PDF转换器平台都难以实现高质量、高清晰度的PDF转换,同时由于受到技术上研发上的限制,普遍能够支持的转换格式都仅仅局限在Word。 传统的PDF...
分类:
其他好文 时间:
2014-07-31 13:43:06
阅读次数:
179