Javascript 小技巧
1.BootStrap 中的 data-toggle / data-target 触发问题
问题:当标签内有 data-toggle
/ data-target
/ area-hidden
等BootStrap
属性时,很难使用 JavaScript
/ jQuery
来进行增删。 解决方法:使用 $('').click()
方法触发它本身的事件即可。
2.时间戳与时间互转
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| 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; } function TimeDate(time, bo) { var today = new Date(); today.setHours(0); today.setMinutes(0); today.setSeconds(0); today.setMilliseconds(0); today = today.getTime() / 1000; var nowtime = Math.ceil(new Date().getTime() / 1000); var newDate = new Date(); newDate.setTime(time * 1000); return newDate.format(bo); } $('#elementId').val(TimeDate(elementTime, 'yyyy-MM-dd')) $('.elementClass').val(TimeDate(elementTime, 'yyyy-MM-dd'))
|
1 2
| var birthday = Date.parse($('[name=birthday]').val()) / 1000
|