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. jsp網(wǎng)頁(yè)實(shí)現(xiàn)貪吃蛇小游戲2. SpringMVC+Jquery實(shí)現(xiàn)Ajax功能3. HTML5 Canvas繪制圖形從入門(mén)到精通4. JavaScript實(shí)現(xiàn)組件化和模塊化方法詳解5. .Net Core和RabbitMQ限制循環(huán)消費(fèi)的方法6. 淺談SpringMVC jsp前臺(tái)獲取參數(shù)的方式 EL表達(dá)式7. ASP.NET MVC遍歷驗(yàn)證ModelState的錯(cuò)誤信息8. jsp+servlet簡(jiǎn)單實(shí)現(xiàn)上傳文件功能(保存目錄改進(jìn))9. ASP中if語(yǔ)句、select 、while循環(huán)的使用方法10. asp(vbs)Rs.Open和Conn.Execute的詳解和區(qū)別及&H0001的說(shuō)明
