1.在js中需要求的当前日期的周一和周日 var now = new Date(); // 当前日期时间对象 var date = now.getDate(); // 当前是几号:当前日期在一个月中的第几天 var d2 = now.getDay(); // 当前周几: 当前日期在本周当中是周几 获取周一和周日的日期 ; // 距离周一几天 - mondayDistance) - ; // 距离周末几天 var monday = new Date(new Date().setDate(now.g…
在学习js时,应该先了解下this关键字,关于js中的this关键字和其他的面向对象语言中的this是不同的,比如在java中,this指的的是当前对象,而在js中,w3c是这样规定的: 关键字 this this 的功能 在 ECMAScript 中,要掌握的最重要的概念之一是关键字 this 的用法,它用在对象的方法中.关键字 this 总是指向调用该方法的对象,例如: var oCar = new Object; oCar.color = "red"; oCar.showColo…