js 時(shí)間格式替代多余字符代碼
Date.prototype.format = function(style) {if(style==undefined || style==null) style='yyyy-MM-dd';var o = { 'M+' : this.getMonth() + 1, //month 'd+' : this.getDate(), //day 'h+' : this.getHours(), //hour 'm+' : this.getMinutes(), //minute 's+' : this.getSeconds(), //second 'w+' : '天一二三四五六'.charAt(this.getDay()), //week 'q+' : Math.floor((this.getMonth() + 3) / 3), //quarter 'S' : this.getMilliseconds() //millisecond}if(/(y+)/.test(style)) { style = style.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));}for(var k in o){ if(new RegExp('('+ k +')').test(style)){style = style.replace(RegExp.$1,RegExp.$1.length == 1 ? o[k] :('00' + o[k]).substr(('' + o[k]).length)); }}return style;};String.prototype.createShortDisp = function(text,num){if(num==undefined || num==null) num=10; var result=text; if (text.length > num) result = text.substring(0, num) + '...'; return '<span title = ’' + text + '’>' + result + '</>';}
相關(guān)文章:
1. Android實(shí)現(xiàn)動(dòng)態(tài)改變shape.xml中圖形的顏色2. Android中的緩存3. Vue實(shí)現(xiàn)div滾輪放大縮小4. PHP擴(kuò)展之APC——Alternative PHP Cache(可選PHP緩存)5. APP啟動(dòng)慢怎么辦,Android官方這樣說(shuō)6. android RecycleView實(shí)現(xiàn)多級(jí)樹(shù)形列表7. Android基于OpenCV實(shí)現(xiàn)圖像修復(fù)8. 解決Android Studio日志太長(zhǎng)或滾動(dòng)太快問(wèn)題9. VUE實(shí)時(shí)監(jiān)聽(tīng)元素距離頂部高度的操作10. 如何從外部瀏覽開(kāi)啟Android App
