<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
// 获取当前时间戳(以s为单位)
var timestamp = Date.parse(new Date());
timestamp = timestamp / 1000;
//当前时间戳为:1403149534
console.log("当前时间戳为:" + timestamp);
// 获取某个时间格式的时间戳
var stringTime = "2014-07-10 10:21:12";
var timestamp2 = Date.parse(new Date(stringTime));
timestamp2 = timestamp2 / 1000;
//2014-07-10 10:21:12的时间戳为:1404958872
console.log(stringTime + "的时间戳为:" + timestamp2);
// 将当前时间换成时间格式字符串
var timestamp3 = 1403058804;
var newDate = new Date();
newDate.setTime(timestamp3 * 1000);
// Wed Jun 18 2014
console.log(newDate.toDateString());
// Wed, 18 Jun 2014 02:33:24 GMT
console.log(newDate.toGMTString());
// 2014-06-18T02:33:24.000Z
console.log(newDate.toISOString());
// 2014-06-18T02:33:24.000Z
console.log(newDate.toJSON());
// 2014年6月18日
console.log(newDate.toLocaleDateString());
// 2014年6月18日 上午10:33:24
console.log(newDate.toLocaleString());
// 上午10:33:24
console.log(newDate.toLocaleTimeString());
// Wed Jun 18 2014 10:33:24 GMT+0800 (中国标准时间)
console.log(newDate.toString());
// 10:33:24 GMT+0800 (中国标准时间)
console.log(newDate.toTimeString());
// Wed, 18 Jun 2014 02:33:24 GMT
console.log(newDate.toUTCString());
Date.prototype.format = function(format) {
var date = {
"M+": this.getMonth() + 1,
"d+": this.getDate(),
"h+": this.getHours(),
"m+": this.getMinutes(),
"s+": this.getSeconds(),
"q+": Math.floor((this.getMonth() + 3) / 3),
"S+": this.getMilliseconds()
if (/(y+)/i.test(format)) {
format = format.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));
for (var k in date) {
if (new RegExp("(" + k + ")").test(format)) {
format = format.replace(RegExp.$1, RegExp.$1.length == 1
? date[k] : ("00" + date[k]).substr(("" + date[k]).length));
return format;
console.log(newDate.format('yyyy-MM-dd h:m:s'));
</script>
文章来源: http://www.cnblogs.com/yjf512/p/3796229.html
1 required:true 必须输入的字段。
2 remote:"check.php" 使用 ajax 方法调用 check.php 验证输入值。
3 email:true 必须输入正确
格式
的电子邮件。
4 url:true 必须输入正确
格式
的网址。
5 date:true 必须输入正确
格式
的
日期
。
日期
校验 ie6 出错,慎用。
6 dateISO:true 必须输入正确
格式
的
日期
(ISO),例如:2009-06-23,1998/01/22。只验证
格式
,不验证有效性。
7 number:true 必须输入合法的数字(负数,小数)。
8 digits:true 必须输入整数。
9 creditcard: 必须输入合法的信用卡号。
10 equalTo:"#field" 输入值必须和 #field 相同。
11 accept: 输入拥有合法后缀名的
字符串
(上传文件的后缀)。
12 maxlength:5 输入长度最多是 5 的
字符串
(汉字算一个字符)。
13 minlength:10 输入长度最小是 10 的
字符串
(汉字算一个字符)。
14 rangelength:[5,10] 输入长度必须介于 5 和 10 之间的
字符串
(汉字算一个字符)。
15 range:[5,10] 输入值必须介于 5 和 10 之间。
16 max:5 输入值不能大于 5。
17 min:10 输入值不能小于 10
处理时间是常见的需求,总结下Date类的相关知识构建时间对象Date对象基于1970年1月1日(世界标准时间)起的毫秒数。构建对象实例有多种方式:不传入参数,默认以系统当前时间返回一个时间对象.new Date(); new Date(); // Wed Mar 13 2019 10:49:28 GMT+0800 (中国标准时间)返回的是一个对象实例,控制台打印了时间
字符串
...
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
//获得年月日 得到
日期
oTimefunction getMyDate(str){ var oDate = new Date(str), oYear = oDate.getFullYear(), oMonth = oDate.getMonth()+1, oDay = oDate.getDate(), oHour = oDate...
//
字符串
转
时间
格式
function getDate(strDate) { var date = eval('new Date(' + strDate.replace(/\d+(?=-[^-]+$)/, function (a) { return parseInt(a, 10) - 1; }).match(/\d+/g) + ')'...
jquery
字符串
转
日期
$(function() {
//
字符串
转
日期
格式
,strDate要
转
为
日期
格式
的
字符串
function getDate(strDate) {
var date = eval('new Date(' + strDate.replace(/\d+(?=-[^-]+$)/,
function(a) {
return parseInt(...
jQuery
简介
jQuery
是一个高效、精简并且功能丰富的JavaScript工具库发明者 John Resig2006年一月,
jQuery
正式发布query 本身是选择的意思,主要对 JavaScript中的选择元素的方法进行了大量的优化。版本发展 1.X:兼容 IE6/7/8,是工作中最常使用的,学习 1.12 版本。 2.X:不兼容 IE6/7/8,多用于
jQuery
官方调整 bug ...
用法:(new Date()).Format(“yyyy-MM-dd hh:mm:ss.S”) ⇒ ==> 2006-07-02 08:09:04.423
// 对Date的扩展,将 Date
转
化为指定
格式
的String
// 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,
// 年(y)可以用 1-4 个占位符,毫秒(S)