/*通過js驗證方法*/
* 方法:驗證是否為數字
* demo: var s="520"; s.isnumber();
string.prototype.isnumber=function();
* 方法:驗證是否為中文
* demo: var s="動感"; s.ischinese();
string.prototype.ischinese=function();
* 方法:驗證是否為英文
* demo: var s="donggan"; s.isenglish();
string.prototype.isenglish=function();
* 方法:驗證是否為身份證
* demo: var s="360722198601015700"; s.isidentity();
string.prototype.isidentity=function()[\d|x]$|^\d$/).test(this);};
* 方法:驗證是否為郵箱
* demo: var s="[email protected]"; s.isemail();
string.prototype.isemail=function();
* 方法:驗證是否為手機號碼
* demo: var s="13724190000"; s.ismobile();
string.prototype.ismobile=function()[1-9]\d$/).test(this);};
* 方法:驗證字元長度是否小於等於指定的長度,是return true,否return false.
* demo: var s="abcdef"; s.checklength(5);
string.prototype.checklength=function(l);
後面慢慢完善啦。。。。
xcode常用專案模板
xcode常用的專案模板中,主要有以下幾類 開啟masterviewcontroller.swift檔案 override func tableview tableview uitableview,caneditrowatindexpath indexpath nsindexpath bool這個是...
python 常用專案列表
專案名稱 作用numpy numpy numerical python 是 python 語言的乙個擴充套件程式庫,支援大量的維度陣列與矩陣運算,此外也針對陣列運算提供大量的數學函式庫。最牛的庫 matplotlib matplotlib 是 python 的繪相簿。它可與 numpy 一起使用,提...
常用js驗證
一 驗證類 1 數字驗證內 1.1 整數 d test str 1.2 大於0的整數 用於傳來的id的驗證 d test str 1.3 負整數的驗證 d test str 2 時間類 2.1 短時間,形如 13 04 06 function istime str d 2 d if a null i...