最近總是使用到js,於是自己記錄一點:
1、js 獲取兩個時間段之間的差值,保留一位小數點:
var productr = $("#entity_productrecoverdate").val(); // mvc3中獲取開始時間
var createdate = $("#entity_createdate").val(); // mvc3中獲取結束時間
var d1 = parseint(new date(productr).gettime() / 1000 / 60 / 60); //精確到小時
var d2 = parseint(new date(createdate).gettime() / 1000 / 60 / 60);
var t = d1 - d2; //獲取小時差
var day = t / 24; //轉化為天數
var newday = day.tofixed(1);//天數保留一位小數:tofixed(保留位數)
JS隨筆 arguments的一些用法
在學習的過程中寫這篇文章,總結一些學習arguments的一些用法 這個用法是基礎的用法 function test return w test name age 輸出結果 name,age輸出結果 name,age 這個例子用了argumens.length的實參引數長度和指代實參引數的功能 ar...
js基礎隨筆
1.判斷乙個屬性是物件 obj 私有的不是繼承來的用obj.hasownproperty name 2 字串操作方法 touppercase 把乙個字串全部變為大寫 tolowercase 小寫 indexof 指定字串出現位置 substring 返回指定索引區間的子串 3 陣列常用操作方法 in...
ifdef, ifndef, if的用法隨筆
ifdnef,ifdef,if的用法簡析 ifdnef,ifdef,if都是用於防止重複編譯的命令。對於處理程式中提供了條件編譯的功能。常用的預處理命令介紹如下 一 include h 指定的檔案 file 插入到指令所在位置的 處。通常用於包含標頭檔案,是 可以利用在別處定義的內容。二 defin...