//獲取字串長度 區分中英文, 中文兩個位元組string.prototype.getbytes = function ()
//擷取字串長度 區分中英文, 中文兩個位元組. 超出部分中指定字串代替 需引用 string.prototype.getbytes
string.prototype.cutbytes = function (strlen, replacestr)
}return "";
};
/*** 對date的擴充套件,將 date 轉化為指定格式的string
* 月(m)、日(d)、12小時(h)、24小時(h)、分(m)、秒(s)、周(e)、季度(q) 可以用 1-2 個佔位符
* 年(y)可以用 1-4 個佔位符,毫秒(s)只能用 1 個佔位符(是 1-3 位的數字)
* eg:
* (new date()).pattern("yyyy-mm-dd hh:mm:ss.s") ==> 2006-07-02 08:09:04.423
* (new date()).pattern("yyyy-mm-dd e hh:mm:ss") ==> 2009-03-10 二 20:09:04
* (new date()).pattern("yyyy-mm-dd ee hh:mm:ss") ==> 2009-03-10 周二 08:09:04
* (new date()).pattern("yyyy-mm-dd eee hh:mm:ss") ==> 2009-03-10 星期二 08:09:04
* (new date()).pattern("yyyy-m-d h:m:s.s") ==> 2006-7-2 8:9:4.18
*/
date.prototype.pattern = function(fmt) ;
var week = ;
if ( /(y+)/ .test(fmt))
if ( /(e+)/ .test(fmt))
for (var k in o)
}return fmt;
};
JS 學習不斷更新
1 indexof 方法 返回 string 物件內第一次出現子字串的字元位置。strobj.indexof substring startindex 引數 strobj 必選項。string 物件或文字。substring 必選項。要在 string 物件中查詢的子字串。starindex 可選項...
numpy庫常用函式記錄(不斷更新)
假設有矩陣a與b,則我們有如下操作方法 1.a i 對矩陣a中的所有元素做i次方的操作並返回乙個新矩陣 2.a b 將矩陣a與矩陣b中對應元素相乘並返回乙個新矩陣 3.dot a,b 對矩陣a與矩陣b做矩陣乘法的運算 4.f a 對矩陣a中所有元素做函式f操作 5.a.sum 將a中所有元素加和並返...
網路收集的常用JS(不斷更新中)
全選的所有指定名稱的checkbox state 全選的checkbox的狀態 name 中的所有checkbox的名稱 author fangtf type void function selectall state,name 全選的所有指定id名稱的同名checkbox state 全選的che...