js-----時間格式化、獲取當前網頁路徑
01:時間型別轉字串
程式碼:直接放到js中
Date.prototype.Format = function (fmt) { //author: meizz
var o = {
"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+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
for (var k in o)
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
return fmt;
};
使用:在執行上述程式碼後,顯示當前時間
setInterval(function(){
var date = new Date();
datefmt=date.Format("yyyy-MM-dd hh:mm:ss")
console.log("當前時間 : "+datefmt);
},1000);
02:獲取當前網頁路徑
var utils_localhost=null;
function getPath(){
if(utils_localhost!=null)return utils_localhost;
var curWwwPath = window.document.location.href;
// 獲取主機地址之後的目錄,如: uimcardprj/share/meun.jsp
var pathName = window.document.location.pathname;
var pos = curWwwPath.indexOf(pathName);
// 獲取主機地址,如: http://localhost:8083
var localhostPaht = curWwwPath.substring(0, pos);
// 獲取帶"/"的專案名,如:/uimcardprj
var projectName = pathName.substring(0, pathName.substr(1).indexOf('/') + 1);
utils_localhost = localhostPaht + projectName + "/";
return utils_localhost;
}
相關文章
- 獲取當前時間
- js時間物件:獲取當前時間(格式化)- 程式碼篇JS物件
- mybatis獲取當前時間MyBatis
- python 如何獲取當前時間Python
- c++ 獲取當前時間周初凌晨時間戳(獲取當前時間週一凌晨時間戳)C++時間戳
- 獲取當前時間往前的日期
- js獲取當前的具體時間JS
- 如何用Java獲取當前時間戳?Java時間戳
- Python如何獲取當前執行檔案路徑?Python
- 獲取當前js檔案被引用的路徑JS
- Qt學習(5)獲取當前系統時間-實時顯示當前時間QT
- Flutter獲取當前網路型別Flutter型別
- WPF 前臺觸發器實時獲取當前時間觸發器
- 獲取當前頁面的topViewControllerViewController
- 如何用js獲取當前時間和ip地址以及當前城市JS
- PHP獲取當前季度的開始時間和結束時間PHP
- Java 獲取本地時間與網路時間Java
- JavaScript怎麼獲取當前時間的年月日?JavaScript
- react獲取當前頁面的url引數React
- 使用go對NTP發起請求獲取當前時間Go
- 直播平臺軟體開發,登陸時獲取當前時間
- shell指令碼獲取時間格式化指令碼
- js獲取當天時間戳JS時間戳
- android短視訊開發,Java程式碼獲取當前時間的時間戳AndroidJava時間戳
- js外掛--獲取指定時間距離當前時間狀態:上週,當前周,前天,昨天,今天,明天,後天,當前周,下週。JS
- pydantic 欄位的預設值設定獲取當前時間
- Android開發:獲取當前系統時間和日期的方法Android
- Java取當前時間的一分鐘後,並格式化輸出Java
- 獲取微信小程式頁面路徑微信小程式
- C#.net 獲取當前應用程式所在路徑及環境變數C#變數
- mysql 獲取當前日期函式及時間格式化引數詳解MySql函式
- win10怎麼獲取當前目錄_win10系統如何快速獲取檔案路徑Win10
- 《Qt5+QDate和QTime獲取當前系統日期和時間》QT
- PHP中獲取當前頁面的各種URL格式PHP
- JavaScript 獲取當前月份JavaScript
- php 獲取當前域名和當前協議PHP協議
- 由system.currentTimeMillis() 獲得當前的時間
- Java程式設計:通過獲取當前時間,判斷今天星期幾Java程式設計