XMLHttpRequest对象可以在不向服务器提交整个页面的情况下,实现局部更新网页。当页面全部加载完毕后,客户端通过该对象向服务器请求数据,服务器端接受数据并处理后,向客户端反馈数据。 XMLHttpRequest 对象提供了对 HTTP 协议的完全的访问,包括做出 POST 和 HEAD 请求 ...
分类:
Web程序 时间:
2018-12-28 17:13:47
阅读次数:
229
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Input: 121 Output: tru ...
分类:
其他好文 时间:
2018-12-28 16:40:20
阅读次数:
199
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree [1,2,2,3,4,4,3] is symmet ...
分类:
其他好文 时间:
2018-12-28 10:47:32
阅读次数:
141
这道题是个差分约束 King Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 14901 Accepted: 5248 Description Once, in one kingdom, there was a queen and ...
分类:
其他好文 时间:
2018-12-23 15:34:41
阅读次数:
111
This problem was recently asked by Google. Given a list of numbers and a number k, return whether any two numbers from the list add up to k. For examp ...
分类:
其他好文 时间:
2018-12-22 11:36:58
阅读次数:
175
CSV是一种十分简洁的数据结构,在DOTNET平台实际使用中发现微软官方并没有提供默认的方法,而网上好多例子发现实现并不严谨甚至一些含有明显错误,所以后面自己实现了一个读写工具类,这里发出来希望方便后面朋友(难免还是会有考虑不到的地方,可随时邮件联系) 使用该工具可对csv文件进行读写(甚至不用去了 ...
MYSQL之中的比较函数和操作符: 1、[NOT] BETWEEN ... AND ... Check whether a value is within a range of values 说明:expr between min and max 如果expr大于或等于表达式是否小于或等于最大和最小 ...
分类:
数据库 时间:
2018-12-20 20:25:21
阅读次数:
235
jQuery.noConflict( ) Query.noConflict( [removeAll ] ) removeAll Type: Boolean A Boolean indicating whether to remove all jQuery variables from the glo ...
分类:
Web程序 时间:
2018-12-19 00:27:46
阅读次数:
193
Given a non-empty string s, you may delete at most one character. Judge whether you can make it a palindrome. Example 1: Input: "aba" Output: True Exa ...
分类:
其他好文 时间:
2018-12-18 11:02:53
阅读次数:
180
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Example 2: Example 3: ...
分类:
其他好文 时间:
2018-12-17 20:13:52
阅读次数:
179