如何將這個時間11:34
轉換爲javascript時間戳。任何可用的JavaScript功能。如何將時間轉換爲javascript-timestamps使用javascript或jquery?
我想爲我使用Flot庫創建一個浮點圖。在我的圖表時間x軸和y軸計數。爲了創建數據部分,我需要將時間轉換爲類似於API文檔中指定的時間戳。
http://people.iola.dk/olau/flot/API.txt
這是我的代碼
var datasets = {
"usa": {
label: "Logged Users",
data: [[10:55, 4], [11:00, 1], [11:05, 4], [11:10, 2], [11:15, 3], [11:20, 1], [11:25, 5]]
}
};
if (datasets.length > 0){
$.plot($("#placeholder"), datasets, {
yaxis: { min: 0,tickDecimals: 0 },
xaxis: { mode: "time",timeformat: "%H:%M" }
});
}
,因爲我指定的確切時間,而不是數它不會工作。所以我需要將其轉換爲時間戳格式。
請幫幫我。
感謝
是記錄事件的時間戳還是什麼,更詳細地描述您想要的內容? – uday 2012-02-22 07:40:43