var date = new Date(Date.parse("2015-09-05".replace(/-/g,"/")));'2015-09-05'是无法被各个浏览器中,使用new Date(str)来正确生成日期对象的. 正确的用法是'2015/09/06'. ------------------------------------------------- javascript的日期用法: var myDate = new Date(); myDate.ge…
JavaScript 兼容各大浏览器阻止冒泡事件 function stopEvent(event) { //阻止冒泡事件 //取消事件冒泡 var e = arguments.callee.caller.arguments[0] || event; //若省略此句,下面的e改为event,IE运行可以,但是其他浏览器就不兼容 if (e && e.stopPropagation) { // this code is for Mozilla and Opera e.stopPropagat…