ie8下测试项目,发现datepicker验证时提示 xxx字段必须是日期。问题曾经出现解决过,搜索以前项目找到一个jquery.validate.myplus.js文件,新项目中未加载内容为jQuery.validator.methods.date = function (value, eleme...
分类:
Web程序 时间:
2015-05-31 13:44:34
阅读次数:
141
HttpClient下载Bing首页图片import org.apache.http.HttpEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.Clo...
分类:
编程语言 时间:
2015-05-26 21:26:14
阅读次数:
182
Building and Installing ACE on UNIX
As of ACE 6.0.6, you can building ACE on UNIX with:Traditional ACE/GNU Make Configuration
The build process for Windows is different from the UNIX methods.
Using t...
分类:
其他好文 时间:
2015-05-23 18:26:52
阅读次数:
189
所用方法// NOTE: All of the following methods will default to drawing on a baseline, limiting drawing to a single line.// To correctly draw and size multi...
分类:
其他好文 时间:
2015-05-23 11:24:49
阅读次数:
146
所用方法// NOTE: All of the following methods will default to drawing on a baseline, limiting drawing to a single line.// To correctly draw and size multi...
分类:
其他好文 时间:
2015-05-23 11:22:49
阅读次数:
178
Python plugin API changes from 1.8 to 2.0 Python plugin API changes from 1.8 to 2.0 SIP API upgrade QVariant removed QSettings return type Replace QString methods Replace QStringList with list Remo...
分类:
编程语言 时间:
2015-05-22 19:49:38
阅读次数:
469
方法一:利用form的onsubmit()函数(经常使用) 注意: 1.提交时,设置form的action和methods属性,然后利用form.submit()函数提交。 总结:1.对form中的组件验证时,前两个使用的是name属性,包...
分类:
其他好文 时间:
2015-05-21 12:19:23
阅读次数:
94
/*
* os.cpp: for linux os methods
*/
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define UNIT_TEST 1
// os class
class OS
{
p...
分类:
系统相关 时间:
2015-05-21 00:10:00
阅读次数:
130
Lecture5: Bisection methods , Newton/Raphson, introduction to lists二分法,牛顿,拉复生方法,列表Bisection methods 二分法注意:
# bug: when x x = high eg.x=0.25 sqrt(x) = 0.5
# fix bug: high = max(x, 1...
分类:
编程语言 时间:
2015-05-19 16:41:21
阅读次数:
339
There are two standard ways of calling methods: obj.method(params) // dot notation
obj method (params) // operator notation The above can be modified in the following ways: If?params?is a sing...
分类:
其他好文 时间:
2015-05-18 21:18:36
阅读次数:
154